diff options
| author | Nick Clifton <nickc@redhat.com> | 2011-06-03 16:32:11 +0000 |
|---|---|---|
| committer | Nick Clifton <nickc@redhat.com> | 2011-06-03 16:32:11 +0000 |
| commit | 5a0a571e0dd6afab7ef7b1cb4a432e65cbd9ac9d (patch) | |
| tree | 0d32393b20931166a1911db844c5160d5bc4bc7b /configure | |
| parent | ee1f6b65a516cfda457f53e00b632596f3acd6cd (diff) | |
| download | newlib-github/binutils-2_21-branch.tar.gz newlib-github/binutils-2_21-branch.tar.bz2 newlib-github/binutils-2_21-branch.zip | |
PR binutils/12665binutils-2_21_1github/binutils-2_21-branchbinutils-2_21-branch
* configure.ac: Correct for minimum CLOOG version.
* configure: Regenerate.
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
