aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2009-09-29 21:31:07 +0000
committerPaolo Bonzini <bonzini@gnu.org>2009-09-29 21:31:07 +0000
commitc8cb1b3e6f5a74fa2b83c3ecf8bfba9b1be7b0ba (patch)
treee4108ecb4bc02da0d60f9c33b0b977b295122ae5 /configure.ac
parent8172766a9309627ee68f193fc5443af78f1d8f85 (diff)
downloadbinutils-c8cb1b3e6f5a74fa2b83c3ecf8bfba9b1be7b0ba.zip
binutils-c8cb1b3e6f5a74fa2b83c3ecf8bfba9b1be7b0ba.tar.gz
binutils-c8cb1b3e6f5a74fa2b83c3ecf8bfba9b1be7b0ba.tar.bz2
2009-09-29 Paolo Bonzini <bonzini@gnu.org>
Sync from gcc: 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * configure.ac: Update minimum MPC version to 0.7. * configure: Regenerate.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 91b2bca..0e68f43 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1358,7 +1358,7 @@ if test -d ${srcdir}/gcc && test "x$have_gmp" = xno; then
CFLAGS="$CFLAGS $mpcinc"
AC_MSG_CHECKING([for the correct version of mpc.h])
AC_TRY_COMPILE([#include <mpc.h>],[
- #if MPC_VERSION < MPC_VERSION_NUM (0,6,0)
+ #if MPC_VERSION < MPC_VERSION_NUM (0,7,0)
choke me
#endif
], [AC_MSG_RESULT([yes]); have_mpc=maybe],
@@ -1404,6 +1404,7 @@ if test -d ${srcdir}/gcc && test "x$have_gmp" = xno; then
mpc_proj (n, n, MPC_RNDNN);
mpc_neg (n, n, MPC_RNDNN);
mpc_sqr (n, n, MPC_RNDNN);
+ mpc_pow (n, n, n, MPC_RNDNN);
mpc_clear (n);
], [AC_MSG_RESULT([yes]); have_mpc=yes],
[AC_MSG_RESULT([no]); have_mpc=no; mpclibs= ; mpcinc= ])