Thanks for the pointers, Geoff. It turns out it had nothing to do with run-time library searching and everything to do with my lack of experience with autoconf. I had to export PKG_CONFIG_PATH pointing to /usr/local/lib/pkgconfig before running configure, and then everything went fine.
--Gary -----Original Message----- From: Geoff Galitz [mailto:[email protected]] Sent: Sunday, December 20, 2009 9:58 AM To: 'Gary Kopp'; [email protected] Subject: RE: [Openvas-discuss] 3.0 Client & gnutls > on > both 32-bit and 64-bit CentOS 5 platforms. The library and scanner > _did_ install on a CentOS 5 64-bit machine. I'm just having a problem > with the client. Gnutls installed into /usr/local/lib, which I've > added to ldconfig. > The old version is in /usr/lib. Did you run "ldconfig" after making changes to the ld.so.conf files to reflect the new library? I'd actually try running with LD_LIBRARY_PATH set to /usr/local/lib to make sure the right libraries are loaded in the right order: export LD_LIBRARY_PATH=/usr/local/lib You can also use the "ldd" program to see exactly what shared libraries are being loaded by the program: ldd /usr/local/bin/openvas-client (or wherever it is). Changes you make via the libtool suite and LD_LIRBARY_PATH environmental variable will show up when you run "ldd." -geoff --------------------------------- Geoff Galitz Blankenheim NRW, Germany http://www.galitz.org/ http://german-way.com/blog/ _______________________________________________ Openvas-discuss mailing list [email protected] http://lists.wald.intevation.org/mailman/listinfo/openvas-discuss
