Title: [155245] trunk
Revision
155245
Author
[email protected]
Date
2013-09-06 23:13:27 -0700 (Fri, 06 Sep 2013)

Log Message

[GTK] Bump the required Clang version to 3.2
https://bugs.webkit.org/show_bug.cgi?id=112537

Reviewed by Gustavo Noronha Silva.

* Source/autotools/CheckSystemAndBasicDependencies.m4: Require the Clang 3.2 stack
when the Clang compiler is specified.

Modified Paths

Diff

Modified: trunk/ChangeLog (155244 => 155245)


--- trunk/ChangeLog	2013-09-07 06:05:23 UTC (rev 155244)
+++ trunk/ChangeLog	2013-09-07 06:13:27 UTC (rev 155245)
@@ -1,3 +1,13 @@
+2013-09-06  Zan Dobersek  <[email protected]>
+
+        [GTK] Bump the required Clang version to 3.2
+        https://bugs.webkit.org/show_bug.cgi?id=112537
+
+        Reviewed by Gustavo Noronha Silva.
+
+        * Source/autotools/CheckSystemAndBasicDependencies.m4: Require the Clang 3.2 stack
+        when the Clang compiler is specified.
+
 2013-09-05  Brendan Long  <[email protected]>
 
         [Qt] DefaultFullScreenVideoHandler and PlatformVideoWindow are included in the build when they are disabled

Modified: trunk/Source/autotools/CheckSystemAndBasicDependencies.m4 (155244 => 155245)


--- trunk/Source/autotools/CheckSystemAndBasicDependencies.m4	2013-09-07 06:05:23 UTC (rev 155244)
+++ trunk/Source/autotools/CheckSystemAndBasicDependencies.m4	2013-09-07 06:13:27 UTC (rev 155245)
@@ -87,14 +87,14 @@
 #endif
 ])], [c_compiler="gcc"], [])
 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
-#if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 0)
+#if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 2)
 #error Not a supported Clang compiler
 #endif
 ])], [c_compiler="clang"], [])
 AC_LANG_POP([C])
 
 if test "$c_compiler" = "unknown"; then
-    AC_MSG_ERROR([Compiler GCC >= 4.7 or Clang >= 3.0 is required for C compilation])
+    AC_MSG_ERROR([Compiler GCC >= 4.7 or Clang >= 3.2 is required for C compilation])
 fi
 
 # Check that an appropriate C++ compiler is available.
@@ -106,14 +106,14 @@
 #endif
 ])], [cxx_compiler="g++"], [])
 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
-#if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 0)
+#if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 2)
 #error Not a supported Clang++ compiler
 #endif
 ])], [cxx_compiler="clang++"], [])
 AC_LANG_POP([C++])
 
 if test "$cxx_compiler" = "unknown"; then
-    AC_MSG_ERROR([Compiler GCC >= 4.7 or Clang >= 3.0 is required for C++ compilation])
+    AC_MSG_ERROR([Compiler GCC >= 4.7 or Clang >= 3.2 is required for C++ compilation])
 fi
 
 # C/C++ Language Features
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to