summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 96c98c5)
raw | patch | inline | side by side (parent: 96c98c5)
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Tue, 4 Aug 2015 13:28:03 +0000 (15:28 +0200) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Mon, 30 Nov 2015 21:53:43 +0000 (22:53 +0100) |
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.
Also, we hardcoded it to $exec-prefix/lib, which is just plain wrong on
64bit architectures.
configure.ac | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index e91a129464f8f30a1f7c0ec9799a925f98047f55..2175beea209fd2da590c5c0e3cbe154085e0c550 100644 (file)
--- a/configure.ac
+++ b/configure.ac
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`
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)"])