Title: [102238] trunk/Tools
Revision
102238
Author
[email protected]
Date
2011-12-07 07:29:47 -0800 (Wed, 07 Dec 2011)

Log Message

[Qt] Fix debug shlib build with V8.

Reviewed by Tor Arne Vestbø.

* qmake/mkspecs/features/qtwebkit.prf: Don't like jscore with
v8 builds.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (102237 => 102238)


--- trunk/Tools/ChangeLog	2011-12-07 15:29:30 UTC (rev 102237)
+++ trunk/Tools/ChangeLog	2011-12-07 15:29:47 UTC (rev 102238)
@@ -1,5 +1,14 @@
 2011-11-30  Simon Hausmann  <[email protected]>
 
+        [Qt] Fix debug shlib build with V8.
+
+        Reviewed by Tor Arne Vestbø.
+
+        * qmake/mkspecs/features/qtwebkit.prf: Don't link jscore with
+        v8 builds.
+
+2011-11-30  Simon Hausmann  <[email protected]>
+
         [Qt] V8 build fixes.
 
         Reviewed by Tor Arne Vestbø.

Modified: trunk/Tools/qmake/mkspecs/features/qtwebkit.prf (102237 => 102238)


--- trunk/Tools/qmake/mkspecs/features/qtwebkit.prf	2011-12-07 15:29:30 UTC (rev 102237)
+++ trunk/Tools/qmake/mkspecs/features/qtwebkit.prf	2011-12-07 15:29:47 UTC (rev 102238)
@@ -28,7 +28,9 @@
 
     force_static_libs_as_shared {
         !no_webkit2: LIBS += -lwebkit2
-        LIBS += -lwebcore -ljscore -lwtf
+        LIBS += -lwebcore
+        !v8: LIBS += -ljscore
+        LIBS += -lwtf
     }
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to