Title: [93787] trunk/Source/WebKit/qt
Revision
93787
Author
[email protected]
Date
2011-08-25 08:29:21 -0700 (Thu, 25 Aug 2011)

Log Message

Unreviewed QtWebKit.pro fix for when building inside Qt

Patch by Simo Fält <[email protected]>

The QtWebKit version was being overwritten by a global Qt version when
QtWebKit was built inside Qt. Fixed by moving the version
definition after the inclusion of qbase.pri.

* QtWebKit.pro:

Modified Paths

Diff

Modified: trunk/Source/WebKit/qt/ChangeLog (93786 => 93787)


--- trunk/Source/WebKit/qt/ChangeLog	2011-08-25 15:22:48 UTC (rev 93786)
+++ trunk/Source/WebKit/qt/ChangeLog	2011-08-25 15:29:21 UTC (rev 93787)
@@ -1,3 +1,15 @@
+2011-08-25  Ademar de Souza Reis Jr.  <[email protected]>
+
+        Unreviewed QtWebKit.pro fix for when building inside Qt
+
+        Patch by Simo Fält <[email protected]>
+
+        The QtWebKit version was being overwritten by a global Qt version when
+        QtWebKit was built inside Qt. Fixed by moving the version
+        definition after the inclusion of qbase.pri.
+
+        * QtWebKit.pro:
+
 2011-08-25  Sheriff Bot  <[email protected]>
 
         Unreviewed, rolling out r93783.

Modified: trunk/Source/WebKit/qt/QtWebKit.pro (93786 => 93787)


--- trunk/Source/WebKit/qt/QtWebKit.pro	2011-08-25 15:22:48 UTC (rev 93786)
+++ trunk/Source/WebKit/qt/QtWebKit.pro	2011-08-25 15:29:21 UTC (rev 93787)
@@ -51,10 +51,6 @@
     contains(DEFINES, ENABLE_WEBGL=1)|contains(CONFIG, texmap): LIBS += $$QMAKE_LIBS_OPENGL
 }
 
-moduleFile=$$PWD/qt_webkit_version.pri
-isEmpty(QT_BUILD_TREE):include($$moduleFile)
-VERSION = $${QT_WEBKIT_MAJOR_VERSION}.$${QT_WEBKIT_MINOR_VERSION}.$${QT_WEBKIT_PATCH_VERSION}
-
 include_webinspector: RESOURCES += $$SOURCE_DIR/WebCore/inspector/front-end/WebKit.qrc $$WC_GENERATED_SOURCES_DIR/InspectorBackendStub.qrc
 
 # Extract sources to build from the generator definitions
@@ -96,6 +92,9 @@
     symbian: TARGET =$$TARGET$${QT_LIBINFIX}
 }
 
+moduleFile=$$PWD/qt_webkit_version.pri
+isEmpty(QT_BUILD_TREE):include($$moduleFile)
+VERSION = $${QT_WEBKIT_MAJOR_VERSION}.$${QT_WEBKIT_MINOR_VERSION}.$${QT_WEBKIT_PATCH_VERSION}
 
 symbian {
     TARGET.EPOCALLOWDLLDATA=1
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to