[commit: integer-gmp] master: Fix configure when we don't have a gmp library (d86166d)
Ian Lynagh
igloo at earth.li
Tue Jan 1 20:44:07 CET 2013
Repository : ssh://darcs.haskell.org//srv/darcs/packages/integer-gmp
On branch : master
http://hackage.haskell.org/trac/ghc/changeset/d86166d5ca901eb339c4f1f5aca4d636ee86d91f
>---------------------------------------------------------------
commit d86166d5ca901eb339c4f1f5aca4d636ee86d91f
Author: Ian Lynagh <igloo at earth.li>
Date: Tue Jan 1 18:41:51 2013 +0000
Fix configure when we don't have a gmp library
>---------------------------------------------------------------
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index 7ea296c..d7c0b3e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -50,7 +50,7 @@ else
LOOK_FOR_GMP_LIB
LOOK_FOR_GMP_FRAMEWORK
fi
-if test "$HaveFrameworkGMP" = "YES" || test "$HaveLibGmp" = "NO"
+if test "$HaveFrameworkGMP" = "YES" || test "$HaveLibGmp" = "YES"
then
AC_CHECK_HEADER([gmp.h], , [AC_MSG_ERROR([Cannot find gmp.h])])
fi
More information about the Cvs-libraries
mailing list