/pidgin/main: eea4bbe04daa: Remove references to -lgcrypt from c...

John Bailey rekkanoryo at rekkanoryo.org
Sun Nov 4 14:34:50 EST 2012


Changeset: eea4bbe04daa0e337e752e4c400e19019ea2fa4a
Author:	 John Bailey <rekkanoryo at rekkanoryo.org>
Date:	 2012-11-04 14:34 -0500
Branch:	 release-2.x.y
URL: http://hg.pidgin.im/pidgin/main/rev/eea4bbe04daa

Description:

Remove references to -lgcrypt from configure.ac.  We don't directly use
libgcrypt anywhere, and GnuTLS doesn't require us to link directly to it.
Fixes #15329.

diffstat:

 configure.ac |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff --git a/configure.ac b/configure.ac
--- a/configure.ac
+++ b/configure.ac
@@ -1771,7 +1771,7 @@ if test "x$enable_gnutls" != "xno"; then
 
 		AC_CACHE_CHECK([for GnuTLS libraries], ac_cv_gnutls_libs,
 		[
-			LIBS="$LIBS $with_gnutls_libs -lgnutls -lgcrypt"
+			LIBS="$LIBS $with_gnutls_libs -lgnutls"
 			AC_TRY_LINK_FUNC(gnutls_init, ac_cv_gnutls_libs="yes", ac_cv_gnutls_libs="no")
 			LIBS="$LIBS_save"
 		])
@@ -1780,7 +1780,7 @@ if test "x$enable_gnutls" != "xno"; then
 			AC_DEFINE(HAVE_GNUTLS, 1, [Define if you have GnuTLS])
 			AC_DEFINE(HAVE_SSL)
 			msg_gnutls="GnuTLS"
-			GNUTLS_LIBS="$with_gnutls_libs -lgnutls -lgcrypt"
+			GNUTLS_LIBS="$with_gnutls_libs -lgnutls"
 
 			enable_gnutls="yes"
 		else



More information about the Commits mailing list