From a07bb48b49813ccbef1696a7f56217dc2fde4914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Tue, 12 Jul 2016 22:38:07 +0200 Subject: [PATCH] Fix configure check for mpz_powm_sec. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 92a36055..1e884773 100644 --- a/configure.ac +++ b/configure.ac @@ -236,7 +236,7 @@ fi # Checks for libraries if test "x$enable_public_key" = "xyes" ; then if test "x$enable_mini_gmp" = "xno" ; then - AC_CHECK_LIB(gmp, __gmpz_mpz_powm,, + AC_CHECK_LIB(gmp, __gmpz_powm_sec,, [AC_MSG_WARN( [GNU MP not found, or too old. GMP-5.0 or later is needed, see http://gmplib.org/. Support for public key algorithms will be unavailable.])] -- GitLab