aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2011-06-03 16:32:11 +0000
committerNick Clifton <nickc@redhat.com>2011-06-03 16:32:11 +0000
commit5a0a571e0dd6afab7ef7b1cb4a432e65cbd9ac9d (patch)
tree0d32393b20931166a1911db844c5160d5bc4bc7b /configure
parentee1f6b65a516cfda457f53e00b632596f3acd6cd (diff)
downloadnewlib-binutils-2_21-branch.zip
newlib-binutils-2_21-branch.tar.gz
newlib-binutils-2_21-branch.tar.bz2
* configure.ac: Correct for minimum CLOOG version. * configure: Regenerate.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 7212797..57c32f0 100755
--- a/configure
+++ b/configure
@@ -5759,7 +5759,7 @@ int
main ()
{
- #if CLOOG_VERSION_MAJOR != 0 || CLOOG_VERSION_MINOR != 15 || CLOOG_VERSION_REVISION < 5
+ #if ((CLOOG_VERSION_MAJOR < 0) || (CLOOG_VERSION_MAJOR == 0 && CLOOG_VERSION_MINOR < 15) || (CLOOG_VERSION_MAJOR == 0 && CLOOG_VERSION_MINOR == 15 && CLOOG_VERSION_REVISION < 5))
choke me
#endif
@@ -5775,7 +5775,7 @@ int
main ()
{
- #if CLOOG_VERSION_MAJOR != 0 || CLOOG_VERSION_MINOR != 15 || CLOOG_VERSION_REVISION < 9
+ #if ((CLOOG_VERSION_MAJOR < 0) || (CLOOG_VERSION_MAJOR == 0 && CLOOG_VERSION_MINOR < 15) || (CLOOG_VERSION_MAJOR == 0 && CLOOG_VERSION_MINOR == 15 && CLOOG_VERSION_REVISION < 5))
choke me
#endif