On Sat, Apr 20, 2013 at 6:04 PM, Newbie89 <sh_ta...@hotmail.com> wrote:

> bash-2.05a# ldd ./check
>         libsqlite3.so.0 => not found
>         libc.so.6 => /lib/libc.so.6 (0xf760a000)
>         /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0xf772b000)
>

Then try this:

export LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH
ldd ./check
./check

(that said, if /usr/lib is not in your library search path then something
fishy is going on)

_IF_ your libsqlite3 is binary-compatible with the one expected by 'check'
then that "should" do the trick. If not, then the whole exercise has been
for naught.

-- 
----- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to