[commit: packages/integer-gmp] master: Update Autoconf tests for recent GMP version (01c3963)

git at git.haskell.org git at git.haskell.org
Sun Nov 24 16:57:20 UTC 2013


Repository : ssh://git@git.haskell.org/integer-gmp

On branch  : master
Link       : http://git.haskell.org/packages/integer-gmp.git/commitdiff/01c39638ee8875061c6e388fe62dac63599a0212

>---------------------------------------------------------------

commit 01c39638ee8875061c6e388fe62dac63599a0212
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date:   Sun Nov 24 17:53:58 2013 +0100

    Update Autoconf tests for recent GMP version
    
    This should improve the check for a suitable installed GMP version, to
    implicitly check if GMP provides __gmpz_powm_sec() which has been added
    in GMP version 5.0.0 and switch to the in-tree GMP 5.0.3 source otherwise.
    
    Signed-off-by: Herbert Valerio Riedel <hvr at gnu.org>


>---------------------------------------------------------------

01c39638ee8875061c6e388fe62dac63599a0212
 aclocal.m4 |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/aclocal.m4 b/aclocal.m4
index 8a9c467..c174ee2 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -6,11 +6,11 @@ dnl--------------------------------------------------------------------
 AC_DEFUN([LOOK_FOR_GMP_LIB],[
     if test "$HaveFrameworkGMP" = "NO"
     then
-        AC_CHECK_LIB([gmp],  [__gmpz_fdiv_qr],
+        AC_CHECK_LIB([gmp],  [__gmpz_powm_sec],
                      [HaveLibGmp=YES; GMP_LIBS=gmp])
         if test "$HaveLibGmp" = "NO"
         then
-            AC_CHECK_LIB([gmp3], [__gmpz_fdiv_qr],
+            AC_CHECK_LIB([gmp3], [__gmpz_powm_sec],
                          [HaveLibGmp=YES; GMP_LIBS=gmp3])
         fi
     fi
@@ -28,7 +28,7 @@ AC_DEFUN([LOOK_FOR_GMP_FRAMEWORK],[
             AC_MSG_CHECKING([for GMP.framework])
             save_libs="$LIBS"
             LIBS="-framework GMP"
-            AC_TRY_LINK_FUNC(__gmpz_fdiv_qr,
+            AC_TRY_LINK_FUNC(__gmpz_powm_sec,
                              [HaveFrameworkGMP=YES; GMP_FRAMEWORK=GMP])
             LIBS="$save_libs"
             AC_MSG_RESULT([$HaveFrameworkGMP])



More information about the ghc-commits mailing list