summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2009-09-26 20:22:43 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2009-09-26 20:22:43 +0000
commit0f3a3df59f505cbe30df7186c504aff66bd88fc8 (patch)
tree1a21bb407a74a2526e83595ae34452b611828eda /configure
parent6e90f68779f9ffc5a5aaa3c99b5836acb341d754 (diff)
downloadgcc-0f3a3df59f505cbe30df7186c504aff66bd88fc8.tar.gz
* configure.ac: Update minimum MPC version to 0.7.
* configure: Regenerate. gcc: * doc/install.texi: Update minimum MPC version to 0.7. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@152207 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 9cce38a1a76..263b934c931 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);
;