configure.ac: Check for version 0.15.5 or later revision of CLooG.
2009-11-21 Sebastian Pop <sebpop@gmail.com> * configure.ac: Check for version 0.15.5 or later revision of CLooG. * configure: Regenerated. From-SVN: r154635
This commit is contained in:
parent
2bc529bf7d
commit
f264ed5676
3 changed files with 10 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-11-21 Sebastian Pop <sebpop@gmail.com>
|
||||
|
||||
* configure.ac: Check for version 0.15.5 or later revision of CLooG.
|
||||
* configure: Regenerated.
|
||||
|
||||
2009-11-21 Ian Lance Taylor <iant@google.com>
|
||||
|
||||
* configure.ac: Change default of poststage1_ldflags to be empty if
|
||||
|
|
6
configure
vendored
6
configure
vendored
|
@ -5897,8 +5897,8 @@ fi
|
|||
if test "x$with_cloog" != "xno" -a "${ENABLE_CLOOG_CHECK}" = "yes"; then
|
||||
saved_CFLAGS="$CFLAGS"
|
||||
CFLAGS="$CFLAGS $clooginc $gmpinc $pplinc"
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for correct version of CLooG" >&5
|
||||
$as_echo_n "checking for correct version of CLooG... " >&6; }
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.15.5 (or later revision) of CLooG" >&5
|
||||
$as_echo_n "checking for version 0.15.5 (or later revision) of CLooG... " >&6; }
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
#include "cloog/cloog.h"
|
||||
|
@ -5906,7 +5906,7 @@ int
|
|||
main ()
|
||||
{
|
||||
|
||||
#if CLOOG_VERSION_MAJOR != 0 || CLOOG_VERSION_MINOR != 15
|
||||
#if CLOOG_VERSION_MAJOR != 0 || CLOOG_VERSION_MINOR != 15 || CLOOG_VERSION_REVISION < 5
|
||||
choke me
|
||||
#endif
|
||||
|
||||
|
|
|
@ -1613,9 +1613,9 @@ ENABLE_CLOOG_CHECK=yes)
|
|||
if test "x$with_cloog" != "xno" -a "${ENABLE_CLOOG_CHECK}" = "yes"; then
|
||||
saved_CFLAGS="$CFLAGS"
|
||||
CFLAGS="$CFLAGS $clooginc $gmpinc $pplinc"
|
||||
AC_MSG_CHECKING([for correct version of CLooG])
|
||||
AC_MSG_CHECKING([for version 0.15.5 (or later revision) of CLooG])
|
||||
AC_TRY_COMPILE([#include "cloog/cloog.h"],[
|
||||
#if CLOOG_VERSION_MAJOR != 0 || CLOOG_VERSION_MINOR != 15
|
||||
#if CLOOG_VERSION_MAJOR != 0 || CLOOG_VERSION_MINOR != 15 || CLOOG_VERSION_REVISION < 5
|
||||
choke me
|
||||
#endif
|
||||
], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); clooglibs= ; clooginc= ])
|
||||
|
|
Loading…
Add table
Reference in a new issue