Jakub Ladman wrote:
but after correction of this i get:libsqlite3.a -lpthread libsqlite3.a(os_unix.o): In function `sqlite3UnixDlopen': os_unix.c:(.text+0x848): undefined reference to `dlopen' libsqlite3.a(os_unix.o): In function `sqlite3UnixDlsym': os_unix.c:(.text+0x85c): undefined reference to `dlsym' libsqlite3.a(os_unix.o): In function `sqlite3UnixDlclose': os_unix.c:(.text+0x870): undefined reference to `dlclose' collect2: ld returned 1 exit status make: *** [sqlite3] Error 1[EMAIL PROTECTED] ~/src/sqlite-3.3.13 $
You're nearly there. The compile has completed, and it's failed at the link stage. You need to add "-ldl" to the end of the recipe so the linker can find dlopen et al.
Martin ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------

