Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19528
Modified Files:
configure.ac
Log Message:
pkgconfig does not support libgcrypt. Use autoconf macro instead.
Index: configure.ac
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/configure.ac,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -p -r1.70 -r1.71
--- configure.ac 4 Aug 2005 10:36:35 -0000 1.70
+++ configure.ac 4 Aug 2005 11:59:28 -0000 1.71
@@ -159,7 +159,7 @@ AM_CONDITIONAL(ENABLE_FUSE_MODULE, $comp
# 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.])
|