I've built various versions of SQLite on Solaris 10 (u7 currently, with the companion CD). Things keep breaking so I have to change how I build it, but recently I've been building it by: * Fetching the amalgamation * configuring with ./configure --prefix=/home/tfb/packages/sqlite-3.6.14.2 \ --enable-static=no \ --enable-readline=yes \ LIBS="-L/opt/sfw/lib -R/opt/sfw/lib -lreadline -lcurses" \ INCLUDES="-I/opt/sfw/include" * gmake; gmake install
This produces a binary which works fine and it is linked with readline: $ ldd ~/packages/sqlite-3.6.14.2/bin/sqlite3 libsqlite3.so.0 => /home/tfb/packages/sqlite-3.6.14.2/ lib/libsqlite3.so.0 libreadline.so.4 => /opt/sfw/lib/libreadline.so.4 libcurses.so.1 => /lib/libcurses.so.1 libc.so.1 => /lib/libc.so.1 libgcc_s.so.1 => /usr/sfw/lib/libgcc_s.so.1 libm.so.2 => /lib/libm.so.2 But history etc does not work. In significantly older versions history *did* work (but building was much different then). Has anyone had any better success getting this to work than me? I suspect my problem is mostly "not running on a Linux distribution sufficiently similar to <x>", but that's not really an option for me unfortunately. Thanks --tim _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users