From: Kurt Zeilenga Date: Thu, 6 Jul 2006 07:51:14 +0000 (+0000) Subject: (ITS#4608) Testing for GMP broken fix X-Git-Tag: OPENLDAP_REL_ENG_2_4_3ALPHA~9^2~63 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=384f479d9ffa248c379c753cf44e0844860b9116;p=openldap (ITS#4608) Testing for GMP broken fix --- 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