Title: [105495] trunk/Source/_javascript_Core
Revision
105495
Author
[email protected]
Date
2012-01-20 01:39:00 -0800 (Fri, 20 Jan 2012)

Log Message

undefined reference to symbol eina_module_free
https://bugs.webkit.org/show_bug.cgi?id=76681

Patch by ChangSeok Oh <[email protected]> on 2012-01-20
Reviewed by Martin Robinson.

eina_module_free has been used without including eina libraries after r104936.

* wtf/PlatformEfl.cmake: Add EINA_LIBRARIES.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (105494 => 105495)


--- trunk/Source/_javascript_Core/ChangeLog	2012-01-20 09:23:02 UTC (rev 105494)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-01-20 09:39:00 UTC (rev 105495)
@@ -1,3 +1,14 @@
+2012-01-20  ChangSeok Oh  <[email protected]>
+
+        undefined reference to symbol eina_module_free
+        https://bugs.webkit.org/show_bug.cgi?id=76681
+
+        Reviewed by Martin Robinson.
+
+        eina_module_free has been used without including eina libraries after r104936.
+
+        * wtf/PlatformEfl.cmake: Add EINA_LIBRARIES.
+
 2012-01-19  Tony Chang  <[email protected]>
 
         [chromium] Remove an obsolete comment about features.gypi

Modified: trunk/Source/_javascript_Core/wtf/PlatformEfl.cmake (105494 => 105495)


--- trunk/Source/_javascript_Core/wtf/PlatformEfl.cmake	2012-01-20 09:23:02 UTC (rev 105494)
+++ trunk/Source/_javascript_Core/wtf/PlatformEfl.cmake	2012-01-20 09:39:00 UTC (rev 105495)
@@ -31,6 +31,7 @@
     ${ICU_I18N_LIBRARIES}
     ${ECORE_LIBRARIES}
     ${ECORE_EVAS_LIBRARIES}
+    ${EINA_LIBRARIES}
     ${EVAS_LIBRARIES}
     ${CMAKE_DL_LIBS}
 )
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to