aboutsummaryrefslogtreecommitdiff
path: root/configure
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
parent8172766a9309627ee68f193fc5443af78f1d8f85 (diff)
downloadfsf-binutils-gdb-c8cb1b3e6f5a74fa2b83c3ecf8bfba9b1be7b0ba.zip
fsf-binutils-gdb-c8cb1b3e6f5a74fa2b83c3ecf8bfba9b1be7b0ba.tar.gz
fsf-binutils-gdb-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')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 9cce38a..263b934 100755
--- a/configure
+++ b/configure
@@ -5270,7 +5270,7 @@ int
main ()
{
- #if MPC_VERSION < MPC_VERSION_NUM (0,6,0)
+ #if MPC_VERSION < MPC_VERSION_NUM (0,7,0)
choke me
#endif
@@ -5354,6 +5354,7 @@ main ()
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);
;