On Thu, Dec 30, 2010 at 08:47, Rich Shepard <[email protected]> wrote: > When I run ./configure with all the necessary options (and all previous > builds have not had problems finding libraries or headers for postgres or > sqlite), it fails with these messages: > > checking for location of SQLite library... /usr/lib/ > checking for sqlite3_open in -lsqlite3... no > checking for sqlite3_open in -lsqlite3... no > configure: error: *** Unable to locate SQLite library.
Configure isn't looking for the libsqlite3.so shared object but rather the associated header files. Check your system to see if "sqlite3.h" exists anywhere: $ locate sqlite3.h It's usually found in the /usr/include/ directory. If it's not there then you're missing the development libraries. If the computer you're trying to install onto is either Fedora or Ubuntu base then there should be a "sqlite3-devel" or "sqlite-devel" package available. Not sure about Slackware. Cheers, Daniel Hedlund [email protected] _______________________________________________ PLUG mailing list [email protected] http://lists.pdxlinux.org/mailman/listinfo/plug
