https://bugs.webkit.org/show_bug.cgi?id=136245
Reviewed by Gyuyoung Kim.
.:
* Source/cmake/OptionsEfl.cmake:
Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
Some warnings are from system libraries.
Source/WebCore:
* css/ViewportStyleResolver.cpp: Includes NodeRenderStyle.h
Source/WebKit2:
* PlatformEfl.cmake: defines GTEST_HAS_RTTI=0
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@172954
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
+
+ [EFL] Build break using clang
+ https://bugs.webkit.org/show_bug.cgi?id=136245
+
+ Reviewed by Gyuyoung Kim.
+
+ * Source/cmake/OptionsEfl.cmake:
+ Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
+ Some warnings are from system libraries.
+
2014-08-25 Alberto Garcia <berto@igalia.com>
[GTK] Unify webkitgtk and webkit2gtk directories
+2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
+
+ [EFL] Build break using clang
+ https://bugs.webkit.org/show_bug.cgi?id=136245
+
+ Reviewed by Gyuyoung Kim.
+
+ * css/ViewportStyleResolver.cpp: Includes NodeRenderStyle.h
+
2014-08-26 Mark Rowe <mrowe@apple.com>
Build fix after r172951.
#include "CSSValueKeywords.h"
#include "Document.h"
+#include "NodeRenderStyle.h"
#include "Page.h"
#include "RenderView.h"
#include "StyleProperties.h"
+2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
+
+ [EFL] Build break using clang
+ https://bugs.webkit.org/show_bug.cgi?id=136245
+
+ Reviewed by Gyuyoung Kim.
+
+ * PlatformEfl.cmake: defines GTEST_HAS_RTTI=0
+
2014-08-25 Zalan Bujtas <zalan@apple.com>
Subpixel layout: remove roundedLayoutPoint/roundedLayoutSize functions.
-DWEBPROCESSNAME=\"WebProcess\"
-DPLUGINPROCESSNAME=\"PluginProcess\"
-DNETWORKPROCESSNAME=\"NetworkProcess\"
+ -DGTEST_HAS_RTTI=0
)
add_library(ewk2UnitTestUtils
set(ENABLE_WEBKIT OFF)
set(ENABLE_WEBKIT2 ON)
-set(ADDITIONAL_COMPILER_FLAGS ENABLE_WERROR)
+# FIXME: Disable WERROR in clang build because of many warnings.
+if (NOT "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
+ set(ADDITIONAL_COMPILER_FLAGS ENABLE_WERROR)
+endif ()
find_package(Cairo 1.10.2 REQUIRED)
find_package(Fontconfig 2.8.0 REQUIRED)