Title: [97864] trunk/Source/_javascript_Core
Revision
97864
Author
[email protected]
Date
2011-10-19 08:13:49 -0700 (Wed, 19 Oct 2011)

Log Message

[EFL] Fix DSO linkage of jsc_efl.
https://bugs.webkit.org/show_bug.cgi?id=70412

Unreviewed build fix.

Need to add -ldl to jsc_efl (requested by dladdr).

Patch by Rafael Antognolli <[email protected]> on 2011-10-19

* shell/CMakeListsEfl.txt:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (97863 => 97864)


--- trunk/Source/_javascript_Core/ChangeLog	2011-10-19 14:59:55 UTC (rev 97863)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-10-19 15:13:49 UTC (rev 97864)
@@ -1,3 +1,14 @@
+2011-10-19  Rafael Antognolli  <[email protected]>
+
+        [EFL] Fix DSO linkage of jsc_efl.
+        https://bugs.webkit.org/show_bug.cgi?id=70412
+
+        Unreviewed build fix.
+
+        Need to add -ldl to jsc_efl (requested by dladdr).
+
+        * shell/CMakeListsEfl.txt:
+
 2011-10-18  Geoffrey Garen  <[email protected]>
 
         Rolled out last Windows build fix because it was wrong.

Modified: trunk/Source/_javascript_Core/shell/CMakeListsEfl.txt (97863 => 97864)


--- trunk/Source/_javascript_Core/shell/CMakeListsEfl.txt	2011-10-19 14:59:55 UTC (rev 97863)
+++ trunk/Source/_javascript_Core/shell/CMakeListsEfl.txt	2011-10-19 15:13:49 UTC (rev 97864)
@@ -1,6 +1,7 @@
 LIST(APPEND JSC_LIBRARIES
     ${Glib_LIBRARIES}
     ${ECORE_LIBRARIES}
+    ${CMAKE_DL_LIBS}
 )
 
 LIST(APPEND JSC_LINK_FLAGS
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to