From 384f479d9ffa248c379c753cf44e0844860b9116 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Thu, 6 Jul 2006 07:51:14 +0000 Subject: [PATCH] (ITS#4608) Testing for GMP broken fix --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 425c8e52b6..2214513eec 100644 --- a/configure.in +++ b/configure.in @@ -2333,7 +2333,7 @@ fi if test $ol_with_mp = gmp || test $ol_with_mp = auto ; then AC_CHECK_HEADERS(gmp.h) AC_CHECK_LIB(gmp, __gmpz_add_ui) - if test $ac_cv_header_gmp_h = yes && test $ac_cv_lib_gmp = yes ; then + if test $ac_cv_header_gmp_h = yes && test $ac_cv_lib_gmp___gmpz_add_ui = yes ; then AC_DEFINE(USE_MP_GMP,1,[define to use GMP for MP]) ol_with_mp=gmp elif test $ol_with_mp = gmp ; then -- 2.39.5