Title: [105881] trunk/Source
Revision
105881
Author
yael.aha...@nokia.com
Date
2012-01-25 09:09:51 -0800 (Wed, 25 Jan 2012)

Log Message

[Qt] Build fix when using force_static_libs_as_shared
https://bugs.webkit.org/show_bug.cgi?id=76832

Reviewed by Simon Hausmann.

Source/WebCore:

Add a dependency on QtWidgets, when compiling against Qt5.

No new tests. This is a build fix.

* Target.pri:

Source/WebKit2:

Add a dependency on QtWidgets.

* Target.pri:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (105880 => 105881)


--- trunk/Source/WebCore/ChangeLog	2012-01-25 16:19:35 UTC (rev 105880)
+++ trunk/Source/WebCore/ChangeLog	2012-01-25 17:09:51 UTC (rev 105881)
@@ -1,3 +1,16 @@
+2012-01-25  Yael Aharon  <yael.aha...@nokia.com>
+
+        [Qt] Build fix when using force_static_libs_as_shared
+        https://bugs.webkit.org/show_bug.cgi?id=76832
+
+        Reviewed by Simon Hausmann.
+
+        Add a dependency on QtWidgets, when compiling against Qt5.
+
+        No new tests. This is a build fix.
+
+        * Target.pri:
+
 2012-01-25  Sami Kyostila  <skyos...@chromium.org>
 
         Clipping of render layer boundaries does not take page scale into account

Modified: trunk/Source/WebCore/Target.pri (105880 => 105881)


--- trunk/Source/WebCore/Target.pri	2012-01-25 16:19:35 UTC (rev 105880)
+++ trunk/Source/WebCore/Target.pri	2012-01-25 17:09:51 UTC (rev 105881)
@@ -19,7 +19,7 @@
 haveQt(5) {
     # Add a QtScript dependency for the time being, in order to pull in the include
     # path for QtScript when it's built as a standalone module
-    QT += script
+    QT += script widgets
 } else {
     INCLUDEPATH += $$PWD/../_javascript_Core/wtf/qt/compat
 }

Modified: trunk/Source/WebKit2/ChangeLog (105880 => 105881)


--- trunk/Source/WebKit2/ChangeLog	2012-01-25 16:19:35 UTC (rev 105880)
+++ trunk/Source/WebKit2/ChangeLog	2012-01-25 17:09:51 UTC (rev 105881)
@@ -1,3 +1,14 @@
+2012-01-25  Yael Aharon  <yael.aha...@nokia.com>
+
+        [Qt] Build fix when using force_static_libs_as_shared
+        https://bugs.webkit.org/show_bug.cgi?id=76832
+
+        Reviewed by Simon Hausmann.
+
+        Add a dependency on QtWidgets.
+
+        * Target.pri:
+
 2012-01-24  Sergio Villar Senin  <svil...@igalia.com>
 
         [WK2] FindController should not assume that ports do not want to highlight text matches

Modified: trunk/Source/WebKit2/Target.pri (105880 => 105881)


--- trunk/Source/WebKit2/Target.pri	2012-01-25 16:19:35 UTC (rev 105880)
+++ trunk/Source/WebKit2/Target.pri	2012-01-25 17:09:51 UTC (rev 105881)
@@ -12,7 +12,7 @@
 include(WebKit2.pri)
 
 WEBKIT += wtf _javascript_core webcore
-QT += declarative
+QT += declarative widgets
 
 CONFIG += staticlib
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to