Title: [122213] trunk/Tools
Revision
122213
Author
[email protected]
Date
2012-07-10 05:02:53 -0700 (Tue, 10 Jul 2012)

Log Message

[EFL] WebKit DRT and WTR fail to build due to undefined reference to WTF::MD5::*
https://bugs.webkit.org/show_bug.cgi?id=90868

Unreviewed EFL build fix.

Correct CMake configuration to have EFL's DRT and WebKitTestRunner link
WTF library. This is needed to resolve undefined reference to WTF::MD5::*.

Patch by Christophe Dumez <[email protected]> on 2012-07-10

* DumpRenderTree/efl/CMakeLists.txt:
* WebKitTestRunner/PlatformEfl.cmake:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (122212 => 122213)


--- trunk/Tools/ChangeLog	2012-07-10 11:19:37 UTC (rev 122212)
+++ trunk/Tools/ChangeLog	2012-07-10 12:02:53 UTC (rev 122213)
@@ -1,3 +1,16 @@
+2012-07-10  Christophe Dumez  <[email protected]>
+
+        [EFL] WebKit DRT and WTR fail to build due to undefined reference to WTF::MD5::*
+        https://bugs.webkit.org/show_bug.cgi?id=90868
+
+        Unreviewed EFL build fix.
+
+        Correct CMake configuration to have EFL's DRT and WebKitTestRunner link
+        WTF library. This is needed to resolve undefined reference to WTF::MD5::*.
+
+        * DumpRenderTree/efl/CMakeLists.txt:
+        * WebKitTestRunner/PlatformEfl.cmake:
+
 2012-07-10  Adam Barth  <[email protected]>
 
         LayoutTestController.dumpConfigurationForViewport should move to Internals

Modified: trunk/Tools/DumpRenderTree/efl/CMakeLists.txt (122212 => 122213)


--- trunk/Tools/DumpRenderTree/efl/CMakeLists.txt	2012-07-10 11:19:37 UTC (rev 122212)
+++ trunk/Tools/DumpRenderTree/efl/CMakeLists.txt	2012-07-10 12:02:53 UTC (rev 122213)
@@ -29,6 +29,7 @@
     ${WebCoreTestSupport_LIBRARY_NAME}
     ${WebCore_LIBRARY_NAME}
     ${WebKit_LIBRARY_NAME}
+    ${WTF_LIBRARY_NAME}
     ${CAIRO_LIBRARIES}
     ${ECORE_X_LIBRARIES}
     ${EDJE_LIBRARIES}

Modified: trunk/Tools/WebKitTestRunner/PlatformEfl.cmake (122212 => 122213)


--- trunk/Tools/WebKitTestRunner/PlatformEfl.cmake	2012-07-10 11:19:37 UTC (rev 122212)
+++ trunk/Tools/WebKitTestRunner/PlatformEfl.cmake	2012-07-10 12:02:53 UTC (rev 122213)
@@ -41,6 +41,7 @@
     ${EDJE_LIBRARIES}
     ${EFLDEPS_LIBRARIES}
     ${Glib_LIBRARIES}
+    ${WTF_LIBRARY_NAME}
 )
 
 LIST(APPEND WebKitTestRunnerInjectedBundle_SOURCES
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to