From 74650cc050df1c2f717f194b2b0bd5cde84c339e Mon Sep 17 00:00:00 2001 From: antona Date: Thu, 4 Aug 2005 11:59:28 +0000 Subject: [PATCH] pkgconfig does not support libgcrypt. Use autoconf macro instead. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1dcecde3..2190f463 100644 --- a/configure.ac +++ b/configure.ac @@ -159,7 +159,7 @@ AM_CONDITIONAL(ENABLE_FUSE_MODULE, $compile_fuse_module) # Autodetect whether we can build crypto stuff or not. compile_crypto=false if test "$enable_crypto" != "no"; then - PKG_CHECK_MODULES(CRYPTO, [libgcrypt], [ compile_crypto=true ], + AM_PATH_LIBGCRYPT(, [ compile_crypto=true ], [ if test "$enable_crypto" = "yes"; then AC_MSG_ERROR([Linux-NTFS crypto code requires the gcrypt library.])