Skip to content

Commit

Permalink
Merge pull request #3741 from stefansaraev/ntfs3g-crypto
Browse files Browse the repository at this point in the history
ntfs-3g_ntfsprogs: fix gcrypt check in autoreconf
  • Loading branch information
stefansaraev committed Jan 3, 2015
2 parents eab1154 + 7f23fc3 commit 2f2fee5
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
diff --git a/configure.ac b/configure.ac
index 830c5fb..e0d3bac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -318,6 +318,7 @@ fi
compile_crypto=false
if test "$enable_crypto" != "no"; then
have_libgcrypt=false
+ m4_ifdef([AM_PATH_LIBGCRYPT],
AM_PATH_LIBGCRYPT(1.2.2, [ have_libgcrypt=true ],
[
if test "$enable_crypto" = "yes"; then
@@ -325,7 +326,7 @@ if test "$enable_crypto" != "no"; then
else
AC_MSG_WARN([ntfsprogs crypto code requires the gcrypt library.])
fi
- ])
+ ]),[have_libgcrypt=false])
have_libgnutls=false
PKG_CHECK_MODULES(GNUTLS, gnutls >= 1.4.4, [ have_libgnutls=true ],
if test "$enable_crypto" = "yes"; then

0 comments on commit 2f2fee5

Please sign in to comment.