diff options
author | Jocelyn Turcotte <jocelyn.turcotte@nokia.com> | 2010-02-23 20:22:56 (GMT) |
---|---|---|
committer | Jocelyn Turcotte <jocelyn.turcotte@nokia.com> | 2010-02-23 20:22:56 (GMT) |
commit | 1851d61749ad4645aeee83867e020d8276fe6ea6 (patch) | |
tree | ee058f3b58f2c12b7dd367f0d078297bcab81659 /src/3rdparty/webkit | |
parent | 0f20bdc28458b147cb177b1d45dc06a75ab3b7b9 (diff) | |
download | Qt-1851d61749ad4645aeee83867e020d8276fe6ea6.zip Qt-1851d61749ad4645aeee83867e020d8276fe6ea6.tar.gz Qt-1851d61749ad4645aeee83867e020d8276fe6ea6.tar.bz2 |
Revert "Updated WebKit from /home/jturcott/dev/webkit to qtwebkit-4.7-merged ( 9303f6d67fb964b71ed3e7361367c3ccfaba5e0a )"
This reverts commit 45344965f1c6b0cd298a05beea3d74547c5a2a91.
Reverting the WebKit update because of build issues on Mac and MSVC
64bit
Diffstat (limited to 'src/3rdparty/webkit')
-rw-r--r-- | src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h | 2 | ||||
-rw-r--r-- | src/3rdparty/webkit/VERSION | 2 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebCore/ChangeLog | 9 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebCore/WebCore.pro | 23 |
4 files changed, 15 insertions, 21 deletions
diff --git a/src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h b/src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h index 09bc40b..efd96ca 100644 --- a/src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h +++ b/src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h @@ -499,7 +499,7 @@ # include <ce_time.h> #endif -#if (PLATFORM(IPHONE) || PLATFORM(MAC) || PLATFORM(WIN)) && !defined(ENABLE_JSC_MULTIPLE_THREADS) +#if (PLATFORM(IPHONE) || PLATFORM(MAC) || PLATFORM(WIN) || (PLATFORM(QT) && OS(DARWIN) && !ENABLE(SINGLE_THREADED))) && !defined(ENABLE_JSC_MULTIPLE_THREADS) #define ENABLE_JSC_MULTIPLE_THREADS 1 #endif diff --git a/src/3rdparty/webkit/VERSION b/src/3rdparty/webkit/VERSION index 999fdb0..35511fb 100644 --- a/src/3rdparty/webkit/VERSION +++ b/src/3rdparty/webkit/VERSION @@ -8,4 +8,4 @@ The commit imported was from the and has the sha1 checksum - 9303f6d67fb964b71ed3e7361367c3ccfaba5e0a + 5381ceeb37d97365cfb2f037650dbb4e495bca4e diff --git a/src/3rdparty/webkit/WebCore/ChangeLog b/src/3rdparty/webkit/WebCore/ChangeLog index e83b003..362834e 100644 --- a/src/3rdparty/webkit/WebCore/ChangeLog +++ b/src/3rdparty/webkit/WebCore/ChangeLog @@ -44,15 +44,6 @@ * loader/MainResourceLoader.cpp: (WebCore::MainResourceLoader::handleDataLoadNow): clear m_initialRequest -2010-02-23 Jocelyn Turcotte <jocelyn.turcotte@nokia.com> - - Reviewed by Laszlo Gombos. - - [Qt] Correct build problems while building QtWebKit inside Qt. - https://bugs.webkit.org/show_bug.cgi?id=34975 - - * WebCore.pro: Change the condition !standalone_package to !QTDIR_build - 2010-02-20 Laszlo Gombos <laszlo.1.gombos@nokia.com> Reviewed by Darin Adler. diff --git a/src/3rdparty/webkit/WebCore/WebCore.pro b/src/3rdparty/webkit/WebCore/WebCore.pro index 63bd728..ba16754 100644 --- a/src/3rdparty/webkit/WebCore/WebCore.pro +++ b/src/3rdparty/webkit/WebCore/WebCore.pro @@ -47,9 +47,8 @@ CONFIG(standalone_package) { isEmpty(WC_GENERATED_SOURCES_DIR):WC_GENERATED_SOURCES_DIR = $$PWD/generated isEmpty(JSC_GENERATED_SOURCES_DIR):JSC_GENERATED_SOURCES_DIR = $$PWD/../JavaScriptCore/generated - # Qt will set the version for us when building in Qt's tree CONFIG(QTDIR_build):include($$QT_SOURCE_TREE/src/qbase.pri) - else: VERSION = $${QT_MAJOR_VERSION}.$${QT_MINOR_VERSION}.$${QT_PATCH_VERSION} + else: VERSION = 4.7.0 PRECOMPILED_HEADER = $$PWD/../WebKit/qt/WebKit_pch.h DEFINES *= NDEBUG @@ -2692,15 +2691,19 @@ WEBKIT_INSTALL_HEADERS = $$WEBKIT_API_HEADERS QMAKE_EXTRA_TARGETS += install } -!CONFIG(QTDIR_build) { - win32-*|wince* { - DLLDESTDIR = $$OUTPUT_DIR/bin - TARGET = $$qtLibraryTarget($$TARGET) +# Qt will set the version for us when building in Qt's tree +!CONFIG(QTDIR_build): VERSION=$${QT_MAJOR_VERSION}.$${QT_MINOR_VERSION}.$${QT_PATCH_VERSION} - dlltarget.commands = $(COPY_FILE) $(DESTDIR_TARGET) $$[QT_INSTALL_BINS] - dlltarget.CONFIG = no_path - INSTALLS += dlltarget - } +win32-*|wince* { + DLLDESTDIR = $$OUTPUT_DIR/bin + TARGET = $$qtLibraryTarget($$TARGET) + + dlltarget.commands = $(COPY_FILE) $(DESTDIR_TARGET) $$[QT_INSTALL_BINS] + dlltarget.CONFIG = no_path + INSTALLS += dlltarget +} + +!CONFIG(standalone_package) { unix { CONFIG += create_pc create_prl |