summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2009-09-29 21:31:07 +0000
committerPaolo Bonzini <pbonzini@redhat.com>2009-09-29 21:31:07 +0000
commite634d38754276af9b9474e2030d6d4355c570b2a (patch)
treec64399f03d84f20ad72f9603c457cc39a60ae05e /configure
parente97ad66a846702f4fb66a2ea8a5191dc97b3e9dc (diff)
downloadcygnal-e634d38754276af9b9474e2030d6d4355c570b2a.tar.gz
cygnal-e634d38754276af9b9474e2030d6d4355c570b2a.tar.bz2
cygnal-e634d38754276af9b9474e2030d6d4355c570b2a.zip
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 9cce38a1a..263b934c9 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);
;