summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2008-11-18 12:07:16 +0000
committerthevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2008-11-18 12:07:16 +0000
commit76bf127eb93fe5daee1bde0cc4daeb98b84c75c9 (patch)
tree28ded51ac00f5aef9bd1f7288d8aa966fd1b02d5
parent3f9223f02737f173f4283b646f699f460ea5f7de (diff)
downloadmpc-76bf127eb93fe5daee1bde0cc4daeb98b84c75c9.tar.gz
configure.ac: change mpfr version required: now >= 2.3.1
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@330 211d60ee-9f03-0410-a15a-8952a2c7a4e4
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 56fc1c7..2c6a36b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -114,15 +114,15 @@ AC_COMPILE_IFELSE(
[AC_LANG_SOURCE(
[[
#include "mpfr.h"
-#if (MPFR_VERSION_MAJOR*100 + MPFR_VERSION_MINOR*10 < 230)
-# error "min MPFR version is 2.3.0"
+#if (MPFR_VERSION_MAJOR*100 + MPFR_VERSION_MINOR*10 + MPFR_VERSION_PATCHLEVEL < 231)
+# error "min MPFR version is 2.3.1"
error
#endif
]])],
[AC_MSG_RESULT(yes)],
[
AC_MSG_RESULT(no)
- AC_MSG_ERROR([MPFR version >= 2.3.0 required])
+ AC_MSG_ERROR([MPFR version >= 2.3.1 required])
])
# Checks for header files.