Files
qt5/patches/qtwebkit/0008-WebCore-is-a-static-library-so-don-t-load-qt_module..patch
2011-04-27 12:34:00 +02:00

36 lines
1.0 KiB
Diff

From 5d5eaaa52a740e32deba17413aaefd17e5ef8d0a Mon Sep 17 00:00:00 2001
From: Prasanth Ullattil <prasanth.ullattil@nokia.com>
Date: Fri, 4 Mar 2011 12:20:14 +0100
Subject: [PATCH] WebCore is a static library, so don't load qt_module.pri .
---
Source/WebCore/WebCore.pro | 2 +-
Source/WebKit/qt/QtWebKit.pro | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Source/WebCore/WebCore.pro b/Source/WebCore/WebCore.pro
index 83b5d00..458d6a2 100644
--- a/Source/WebCore/WebCore.pro
+++ b/Source/WebCore/WebCore.pro
@@ -1,5 +1,5 @@
# WebCore - qmake build info
-CONFIG += building-libs qt_module
+CONFIG += building-libs
CONFIG += depend_includepath
isEmpty(OUTPUT_DIR): OUTPUT_DIR = ..
diff --git a/Source/WebKit/qt/QtWebKit.pro b/Source/WebKit/qt/QtWebKit.pro
index 78ffee2..e572641 100644
--- a/Source/WebKit/qt/QtWebKit.pro
+++ b/Source/WebKit/qt/QtWebKit.pro
@@ -1,5 +1,5 @@
# QtWebKit - qmake build info
-CONFIG += building-libs
+CONFIG += building-libs qt_module
CONFIG += depend_includepath
TARGET = QtWebKit
--
1.7.3.1