]> git.sur5r.net Git - openldap/commitdiff
(ITS#4608) Testing for GMP broken fix
authorKurt Zeilenga <kurt@openldap.org>
Thu, 6 Jul 2006 07:51:14 +0000 (07:51 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Thu, 6 Jul 2006 07:51:14 +0000 (07:51 +0000)
configure.in

index 425c8e52b6e931b5e601f1868821b7b0af62d4ad..2214513eec8110e9b7422cf1878fb358ded03a0a 100644 (file)
@@ -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