summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/WebCore/ChangeLog17
-rw-r--r--Source/WebCore/WebCore.pri7
2 files changed, 17 insertions, 7 deletions
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index 32cd892c8..66a1d36b9 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,5 +1,22 @@
2012-08-23 Simon Hausmann <simon.hausmann@nokia.com>
+ [Qt] Fix make install on Windows
+ https://bugs.webkit.org/show_bug.cgi?id=94816
+
+ Reviewed by NOBODY (OOPS!).
+
+ This old left-over rule for Windows to add dlltarget to INSTALLS caused
+ various bugs: WebCore's Makefile had an actual install target that
+ tried to install the WebCore static library and it also screwed up
+ api.pri's install rule by overriding what is usually set up for qt
+ modules, i.e. the install path was missing INSTALL_ROOT. We don't need
+ these rules at all, the default qmake features take care of setting up
+ target install rules accordingly.
+
+ * WebCore.pri:
+
+2012-08-23 Simon Hausmann <simon.hausmann@nokia.com>
+
Unreviewed trivial build fix for Qt/Mac on OS X 10.6: Avoid using an
enum value that clashes with an existing class name that's used in the
same file.
diff --git a/Source/WebCore/WebCore.pri b/Source/WebCore/WebCore.pri
index 3390d4093..10181f50a 100644
--- a/Source/WebCore/WebCore.pri
+++ b/Source/WebCore/WebCore.pri
@@ -217,13 +217,6 @@ config_libwebp {
LIBS += -lwebp
}
-win32-*|wince* {
- DLLDESTDIR = $${ROOT_BUILD_DIR}/bin
-
- dlltarget.commands = $(COPY_FILE) $(DESTDIR_TARGET) $$[QT_INSTALL_BINS]
- dlltarget.CONFIG = no_path
- INSTALLS += dlltarget
-}
mac {
LIBS += -framework Carbon -framework AppKit
}