From 11df9b577ba7ec8edafe17ded4f9c1ac586e9159 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Tue, 4 Aug 2015 15:28:03 +0200 Subject: [PATCH] gcrypt: remove exec-prefix check libgcrypt-config --libs already includes the correct library include path. Also, we hardcoded it to $exec-prefix/lib, which is just plain wrong on 64bit architectures. --- configure.ac | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/configure.ac b/configure.ac index 9c2f32af..9fde5182 100644 --- a/configure.ac +++ b/configure.ac @@ -2010,12 +2010,6 @@ then GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null` fi - if test "x$GCRYPT_LDFLAGS" = "x" - then - gcrypt_exec_prefix=`"$with_libgcrypt_config" --exec-prefix 2>/dev/null` - GCRYPT_LDFLAGS="-L$gcrypt_exec_prefix/lib" - fi - if test "x$GCRYPT_LIBS" = "x" then GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null` @@ -2040,10 +2034,6 @@ fi if test "x$with_libgcrypt" = "xyes" then - if test "x$GCRYPT_LDFLAGS" != "x" - then - AC_MSG_NOTICE([gcrypt LDFLAGS: $GCRYPT_LDFLAGS]) - fi AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer, [with_libgcrypt="yes"], [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"]) -- 2.30.2