Title: [160362] trunk
Revision
160362
Author
commit-qu...@webkit.org
Date
2013-12-10 06:33:16 -0800 (Tue, 10 Dec 2013)

Log Message

[CMAKE] Remove code that disables C++0x compat warnings for gcc-4.6 and above.
https://bugs.webkit.org/show_bug.cgi?id=125492

Patch by Tamas Gergely <tgergely.u-sze...@partner.samsung.com> on 2013-12-10
Reviewed by Zoltan Herczeg.

Remove the code that disables these warnings for GCC >= 4.6.0

* Source/cmake/WebKitHelpers.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (160361 => 160362)


--- trunk/ChangeLog	2013-12-10 14:32:17 UTC (rev 160361)
+++ trunk/ChangeLog	2013-12-10 14:33:16 UTC (rev 160362)
@@ -1,3 +1,14 @@
+2013-12-10  Tamas Gergely  <tgergely.u-sze...@partner.samsung.com>
+
+        [CMAKE] Remove code that disables C++0x compat warnings for gcc-4.6 and above.
+        https://bugs.webkit.org/show_bug.cgi?id=125492
+
+        Reviewed by Zoltan Herczeg.
+
+        Remove the code that disables these warnings for GCC >= 4.6.0
+
+        * Source/cmake/WebKitHelpers.cmake:
+
 2013-12-10  Martin Robinson  <mrobin...@igalia.com>
 
         Various fixes for the CMake GTK+ build

Modified: trunk/Source/cmake/WebKitHelpers.cmake (160361 => 160362)


--- trunk/Source/cmake/WebKitHelpers.cmake	2013-12-10 14:32:17 UTC (rev 160361)
+++ trunk/Source/cmake/WebKitHelpers.cmake	2013-12-10 14:33:16 UTC (rev 160362)
@@ -45,12 +45,6 @@
             set(OLD_COMPILE_FLAGS "-Werror -Wno-error=unused-parameter ${OLD_COMPILE_FLAGS}")
         endif ()
 
-        # Disable C++0x compat warnings for GCC >= 4.6.0 until we build
-        # cleanly with that.
-        if (NOT ${OPTION_IGNORECXX_WARNINGS} AND NOT ${COMPILER_VERSION} VERSION_LESS "4.6.0")
-            set(OLD_COMPILE_FLAGS "${OLD_COMPILE_FLAGS} -Wno-c++0x-compat")
-        endif ()
-
         set_target_properties(${_target} PROPERTIES
             COMPILE_FLAGS "${OLD_COMPILE_FLAGS}")
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to