summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--polly/autoconf/configure.ac2
-rw-r--r--polly/cmake/FindIsl.cmake2
-rwxr-xr-xpolly/configure6
3 files changed, 5 insertions, 5 deletions
diff --git a/polly/autoconf/configure.ac b/polly/autoconf/configure.ac
index 21991572b32..9ce989a94ec 100644
--- a/polly/autoconf/configure.ac
+++ b/polly/autoconf/configure.ac
@@ -81,7 +81,7 @@ dnl Find Isl
find_lib_and_headers([isl], [isl/config.h], [isl], [required])
dnl Find whether ISL has a codegen.h file.
-find_lib_and_headers([isl], [isl/codegen.h], [isl])
+find_lib_and_headers([isl], [isl/ast.h], [isl])
AS_IF([test "x$isl_found" = "xyes"],
[AC_DEFINE([ISL_CODEGEN_FOUND],[1],[Define if ISL has a code generator])])
diff --git a/polly/cmake/FindIsl.cmake b/polly/cmake/FindIsl.cmake
index c739602480a..21ad8a2d0dd 100644
--- a/polly/cmake/FindIsl.cmake
+++ b/polly/cmake/FindIsl.cmake
@@ -1,5 +1,5 @@
FIND_PATH(ISL_INCLUDE_DIR isl/set.h)
-FIND_PATH(ISL_CODEGEN_DIR isl/codegen.h)
+FIND_PATH(ISL_CODEGEN_DIR isl/ast.h)
IF (ISL_CODEGEN_DIR)
SET(ISL_CODEGEN_FOUND TRUE)
diff --git a/polly/configure b/polly/configure
index 36751e82823..13bbaf094d2 100755
--- a/polly/configure
+++ b/polly/configure
@@ -2597,13 +2597,13 @@ else
fi
# Check for library and headers works
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isl: isl/codegen.h in $given_inc_path, and libisl in $given_lib_path" >&5
-$as_echo_n "checking for isl: isl/codegen.h in $given_inc_path, and libisl in $given_lib_path... " >&6; }
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isl: isl/ast.h in $given_inc_path, and libisl in $given_lib_path" >&5
+$as_echo_n "checking for isl: isl/ast.h in $given_inc_path, and libisl in $given_lib_path... " >&6; }
# try to compile a file that includes a header of the library
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#include <isl/codegen.h>
+#include <isl/ast.h>
int
main ()
{
OpenPOWER on IntegriCloud