summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2012-07-02 14:05:07 +0000
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2012-07-02 14:05:07 +0000
commitcf7b95446ba84e7e2269fca3a04c6e40572cb595 (patch)
tree6505fb8e27b5e5e83a8b0465f563c945cf348174 /config
parent44678cb6d34bfdc726f65dcd91c5f25c6f35d471 (diff)
downloadgcc-cf7b95446ba84e7e2269fca3a04c6e40572cb595.tar.gz
2012-07-02 Richard Guenther <rguenther@suse.de>
config/ * isl.m4 (_ISL_CHECK_CT_PROG): Omit main function header/footer. Fix version test. * configure: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@189159 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog5
-rw-r--r--config/isl.m49
2 files changed, 8 insertions, 6 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index b0b6690cf9d..c2c93fc2e39 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,4 +1,9 @@
2012-07-02 Richard Guenther <rguenther@suse.de>
+
+ * isl.m4 (_ISL_CHECK_CT_PROG): Omit main function header/footer.
+ Fix version test.
+
+2012-07-02 Richard Guenther <rguenther@suse.de>
Michael Matz <matz@suse.de>
Tobias Grosser <tobias@grosser.es>
Sebastian Pop <sebpop@gmail.com>
diff --git a/config/isl.m4 b/config/isl.m4
index 0ddeddba9c2..c5411587c1d 100644
--- a/config/isl.m4
+++ b/config/isl.m4
@@ -107,12 +107,9 @@ AC_DEFUN([ISL_REQUESTED],
m4_define([_ISL_CHECK_CT_PROG],[AC_LANG_PROGRAM(
[#include <isl/version.h>
#include <string.h>],
- [int main()
- {
- if (strncmp (isl_version (), "isl-0.10", strlen ("isl-$1.$2")) != 0)
- return 1;
- return 0;
- }])])
+ [if (strncmp (isl_version (), "isl-$1.$2", strlen ("isl-$1.$2")) != 0)
+ return 1;
+ ])])
# ISL_CHECK_VERSION ISL_CHECK_VERSION (MAJOR, MINOR)
# ----------------------------------------------------------------