Title: [134368] trunk
Revision
134368
Author
[email protected]
Date
2012-11-12 22:55:08 -0800 (Mon, 12 Nov 2012)

Log Message

[EFL] Turn on errors on warnings for WebKit1 and WebKit2 libraries
https://bugs.webkit.org/show_bug.cgi?id=101762

Patch by KyungTae Kim <[email protected]> on 2012-11-12
Reviewed by Gyuyoung Kim.

In case of EFL, add ENABLE_WERROR to EXTRA_COMPILER_FLAGS for WEBKIT and WEBKIT2

* Source/CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/ChangeLog (134367 => 134368)


--- trunk/ChangeLog	2012-11-13 06:50:15 UTC (rev 134367)
+++ trunk/ChangeLog	2012-11-13 06:55:08 UTC (rev 134368)
@@ -1,3 +1,14 @@
+2012-11-12  KyungTae Kim  <[email protected]>
+
+        [EFL] Turn on errors on warnings for WebKit1 and WebKit2 libraries
+        https://bugs.webkit.org/show_bug.cgi?id=101762
+
+        Reviewed by Gyuyoung Kim.
+
+        In case of EFL, add ENABLE_WERROR to EXTRA_COMPILER_FLAGS for WEBKIT and WEBKIT2
+
+        * Source/CMakeLists.txt:
+
 2012-11-12  Joe Mason  <[email protected]>
 
         [BlackBerry] NetworkJob should not check if data is received with HEAD

Modified: trunk/Source/CMakeLists.txt (134367 => 134368)


--- trunk/Source/CMakeLists.txt	2012-11-13 06:50:15 UTC (rev 134367)
+++ trunk/Source/CMakeLists.txt	2012-11-13 06:55:08 UTC (rev 134368)
@@ -39,11 +39,11 @@
 ENDIF ()
 
 IF (ENABLE_WEBKIT)
-    WEBKIT_SET_EXTRA_COMPILER_FLAGS(${WebKit_LIBRARY_NAME})
+    WEBKIT_SET_EXTRA_COMPILER_FLAGS(${WebKit_LIBRARY_NAME} ${ADDITIONAL_FLAGS})
 ENDIF ()
 
 IF (ENABLE_WEBKIT2)
-    WEBKIT_SET_EXTRA_COMPILER_FLAGS(${WebKit2_LIBRARY_NAME})
+    WEBKIT_SET_EXTRA_COMPILER_FLAGS(${WebKit2_LIBRARY_NAME} ${ADDITIONAL_FLAGS})
 ENDIF ()
 
 # -----------------------------------------------------------------------------
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to