Title: [136212] trunk/Source/WebCore
Revision
136212
Author
[email protected]
Date
2012-11-30 00:54:40 -0800 (Fri, 30 Nov 2012)

Log Message

[EFL] libwebcore_efl.a fail to link when enable webgl
https://bugs.webkit.org/show_bug.cgi?id=103610

Patch by Halton Huo <[email protected]> on 2012-11-30
Reviewed by Gyuyoung Kim.

libwebcore_efl.a should link to X11, Xcomposite and Xrender libraries when ENABLE_WEBGL is ON

No new tests, no behavior change for layout tests.

* PlatformEfl.cmake: Append ${X11_X11_LIB}, ${X11_Xcomposite_LIB} and ${X11_Xrender_LIB} to WebCore_LIBRARIES

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (136211 => 136212)


--- trunk/Source/WebCore/ChangeLog	2012-11-30 08:52:05 UTC (rev 136211)
+++ trunk/Source/WebCore/ChangeLog	2012-11-30 08:54:40 UTC (rev 136212)
@@ -1,3 +1,16 @@
+2012-11-30  Halton Huo  <[email protected]>
+
+        [EFL] libwebcore_efl.a fail to link when enable webgl
+        https://bugs.webkit.org/show_bug.cgi?id=103610
+
+        Reviewed by Gyuyoung Kim.
+
+        libwebcore_efl.a should link to X11, Xcomposite and Xrender libraries when ENABLE_WEBGL is ON
+
+        No new tests, no behavior change for layout tests.
+
+        * PlatformEfl.cmake: Append ${X11_X11_LIB}, ${X11_Xcomposite_LIB} and ${X11_Xrender_LIB} to WebCore_LIBRARIES
+
 2012-11-30  Tim Horton  <[email protected]>
 
         Unreviewed, fix the PDFPlugin build after http://trac.webkit.org/changeset/136205.

Modified: trunk/Source/WebCore/PlatformEfl.cmake (136211 => 136212)


--- trunk/Source/WebCore/PlatformEfl.cmake	2012-11-30 08:52:05 UTC (rev 136211)
+++ trunk/Source/WebCore/PlatformEfl.cmake	2012-11-30 08:54:40 UTC (rev 136212)
@@ -297,6 +297,11 @@
     platform/graphics/texmap/TextureMapperGL.cpp
     platform/graphics/texmap/TextureMapperShaderManager.cpp
   )
+  LIST(APPEND WebCore_LIBRARIES
+    ${X11_X11_LIB}
+    ${X11_Xcomposite_LIB}
+    ${X11_Xrender_LIB}
+  )
 ENDIF ()
 
 ADD_DEFINITIONS(-DDATA_DIR="${CMAKE_INSTALL_PREFIX}/${DATA_INSTALL_DIR}")
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to