diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-04-02 17:35:39 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-04-02 17:35:39 +0000 |
commit | 1279b87b3d29510bd11d89a837e0c4863ec7f398 (patch) | |
tree | a8435cfb386c963315e84c7e3b3769043c6ff1ee /configure | |
parent | 87c0a9fc7ecdf7859bd35021f8faff234ac17ca7 (diff) | |
download | gcc-1279b87b3d29510bd11d89a837e0c4863ec7f398.tar.gz |
Print "buggy but acceptable" when CLooG revision is less than 9.
2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
* configure.ac: Print "buggy but acceptable" when CLooG
revision is less than 9.
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157945 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/configure b/configure index c2c406e7334..fe2bb65ba39 100755 --- a/configure +++ b/configure @@ -5951,9 +5951,30 @@ main () } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include "cloog/cloog.h" +int +main () +{ + + #if CLOOG_VERSION_MAJOR != 0 || CLOOG_VERSION_MINOR != 15 || CLOOG_VERSION_REVISION < 9 + choke me + #endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: buggy but acceptable" >&5 +$as_echo "buggy but acceptable" >&6; } +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; }; clooglibs= ; clooginc= fi |