Title: [155339] releases/WebKitGTK/webkit-2.2
- Revision
- 155339
- Author
- carlo...@webkit.org
- Date
- 2013-09-09 02:51:54 -0700 (Mon, 09 Sep 2013)
Log Message
Merge r155245 - [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: releases/WebKitGTK/webkit-2.2/ChangeLog (155338 => 155339)
--- releases/WebKitGTK/webkit-2.2/ChangeLog 2013-09-09 09:40:26 UTC (rev 155338)
+++ releases/WebKitGTK/webkit-2.2/ChangeLog 2013-09-09 09:51:54 UTC (rev 155339)
@@ -1,3 +1,13 @@
+2013-09-06 Zan Dobersek <zdober...@igalia.com>
+
+ [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-04 Zan Dobersek <zdober...@igalia.com>
[GTK] Add support for the Wayland build target
Modified: releases/WebKitGTK/webkit-2.2/Source/autotools/CheckSystemAndBasicDependencies.m4 (155338 => 155339)
--- releases/WebKitGTK/webkit-2.2/Source/autotools/CheckSystemAndBasicDependencies.m4 2013-09-09 09:40:26 UTC (rev 155338)
+++ releases/WebKitGTK/webkit-2.2/Source/autotools/CheckSystemAndBasicDependencies.m4 2013-09-09 09:51:54 UTC (rev 155339)
@@ -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
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes