> 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
