On Thu, 30 Dec 2010, chris (fool) mccraw wrote: >> /usr/lib//libsqlite3.so: undefined reference to lsym' >> /usr/lib//libsqlite3.so: undefined reference to lerror' >> /usr/lib//libsqlite3.so: undefined reference to lopen' >> /usr/lib//libsqlite3.so: undefined reference to lclose'
The above should have been `dlsym', `dlerror', `dlopen', and `dlclose' > for i in /usr/lib/*so ; do nm $i | grep dlsym | grep T && echo $i ; done > > if you get some output like this: > > 00000000 T lsym > /usr/lib/libdl.so Mine's similar: 00000cd0 T dlsym /usr/lib/libdl.so > then you've probably found a library you need to add to $LDFLAGS (in > linker syntax--something like "-ldl") before running ./configure again > (remove config.cache first!) If I can find where to add the library reference, I'll do this. Thanks, Rich _______________________________________________ PLUG mailing list [email protected] http://lists.pdxlinux.org/mailman/listinfo/plug
