Tito Ciuro <[EMAIL PROTECTED]> writes: > Hello, > > SQLite 3.3.4 > Mac OS X Tiger 10.4.5 > > After ./configure and make SQLite 3.3.4, I see that some files have > disappeared: > > os_test.c > os_test.h > os_unix.h > os_win.h > > This results in a few undefined symbols: > > sqlite3OsClose > sqlite3FileSize > sqlite3OsLock > ... > > Any ideas?
First guess would be that 'configure' isn't detecting that OS X is Unix-like. I suspect you might get a hint of what's going on if you carefully inspect the output from 'configure' to see what supported OS it's detecting (if any). Derrell