Carolin Latze <[email protected]> writes: > Hi all, > > I tried to install GnuTLS, which results in errors when executing make > check. > > libgpg-error 1.7 has been installed with > > ./configure; make; make install (make check completes successfully) > > libgcrypt 1.4.4 has been installed with > > ./configure --prefix=/usr --with-gpg-error-prefix=/usr/local; make; > make install (make check completes successfully) > > gnutls 2.6.6 has been installed with > > ./configure --prefix=/usr --disable-srp-authentication > --disable-openpgp-authentication
Try adding --with-libgcrypt-prefix=/usr/local. Otherwise it likely tries to use libgcrypt from /usr. > /usr/local/src/gnutls-2.6.6/lib/.libs/libgnutls.so.26: symbol > gcry_cipher_setkey, version GCRYPT_1.2 not defined in file > libgcrypt.so.11 with link time reference Yes, it seems to use one libgcrypt during linking and another one when running. You could also try running "ldconfig" as root to make sure the ld.so.cache is uptodate. /Simon _______________________________________________ Help-gnutls mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-gnutls
