summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--m4/hooks.m49
1 files changed, 5 insertions, 4 deletions
diff --git a/m4/hooks.m4 b/m4/hooks.m4
index aebc58214a..86b4b2a0e5 100644
--- a/m4/hooks.m4
+++ b/m4/hooks.m4
@@ -68,16 +68,17 @@ AC_DEFUN([LIBGNUTLS_HOOKS],
DLL_SSL_VERSION=`expr ${LT_SSL_CURRENT} - ${LT_SSL_AGE}`
AC_SUBST(DLL_SSL_VERSION)
- PKG_CHECK_MODULES(NETTLE, [nettle >= 3.4.1], [cryptolib="nettle"], [
+NETTLE_MINIMUM=3.4.1
+ PKG_CHECK_MODULES(NETTLE, [nettle >= $NETTLE_MINIMUM], [cryptolib="nettle"], [
AC_MSG_ERROR([[
***
- *** Libnettle 3.4 was not found.
+ *** Libnettle $NETTLE_MINIMUM was not found.
]])
])
- PKG_CHECK_MODULES(HOGWEED, [hogweed >= 3.4.1], [], [
+ PKG_CHECK_MODULES(HOGWEED, [hogweed >= $NETTLE_MINIMUM ], [], [
AC_MSG_ERROR([[
***
- *** Libhogweed (nettle's companion library) was not found. Note that you must compile nettle with gmp support.
+ *** Libhogweed (nettle's companion library) $NETTLE_MINIMUM was not found. Note that you must compile nettle with gmp support.
]])
])
AM_CONDITIONAL(ENABLE_NETTLE, test "$cryptolib" = "nettle")