]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
do not depend on gcrypt autoconf macros
authorMartin Willi <martin@strongswan.org>
Mon, 31 Aug 2009 11:14:54 +0000 (13:14 +0200)
committerMartin Willi <martin@strongswan.org>
Mon, 31 Aug 2009 11:14:54 +0000 (13:14 +0200)
configure.in
src/libstrongswan/plugins/gcrypt/Makefile.am

index c29454bd8dcd24ec5bad5e68555ae6685a2b15bb..cc378169ae4e5c82e51d89b56db0fc5c4d652536 100644 (file)
@@ -1111,7 +1111,8 @@ if test x$openssl = xtrue; then
 fi
 
 if test x$gcrypt = xtrue; then
-       AM_PATH_LIBGCRYPT(,,[AC_MSG_ERROR([libgcrypt not found!])])
+       AC_HAVE_LIBRARY([gcrypt],[LIBS="$LIBS"],[AC_MSG_ERROR([gcrypt library not found])])
+       AC_CHECK_HEADER([gcrypt.h],,[AC_MSG_ERROR([gcrypt header gcrypt.h not found!])])
        AC_MSG_CHECKING([gcrypt CAMELLIA cipher])
        AC_TRY_COMPILE(
                [#include <gcrypt.h>],
index 7394676e2e6f5eb534b9e967b30bfd54c6f08ecd..a468a5ed9093d4428cd93dde55df8ef9cd879212 100644 (file)
@@ -1,7 +1,7 @@
 
 INCLUDES = -I$(top_srcdir)/src/libstrongswan
 
-AM_CFLAGS = -rdynamic $(LIBGCRYPT_CFLAGS)
+AM_CFLAGS = -rdynamic
 
 plugin_LTLIBRARIES = libstrongswan-gcrypt.la
 
@@ -14,4 +14,4 @@ libstrongswan_gcrypt_la_SOURCES = gcrypt_plugin.h gcrypt_plugin.c \
        gcrypt_hasher.h gcrypt_hasher.c
 
 libstrongswan_gcrypt_la_LDFLAGS = -module -avoid-version
-libstrongswan_gcrypt_la_LIBADD  = $(LIBGCRYPT_LIBS)
+libstrongswan_gcrypt_la_LIBADD  = -lgcrypt