Title: [141435] trunk/Tools
Revision
141435
Author
[email protected]
Date
2013-01-31 10:32:12 -0800 (Thu, 31 Jan 2013)

Log Message

[Qt] Disable force_static_libs_as_shared in developer builds if wk2 is enabled

Reviewed by Jocelyn Turcotte.

This is a temporary workaround during the development of #108471, where we move files around
but some link time dependencies might remain.

* qmake/mkspecs/features/default_post.prf:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (141434 => 141435)


--- trunk/Tools/ChangeLog	2013-01-31 18:24:04 UTC (rev 141434)
+++ trunk/Tools/ChangeLog	2013-01-31 18:32:12 UTC (rev 141435)
@@ -1,5 +1,16 @@
 2013-01-31  Simon Hausmann  <[email protected]>
 
+        [Qt] Disable force_static_libs_as_shared in developer builds if wk2 is enabled
+
+        Reviewed by Jocelyn Turcotte.
+
+        This is a temporary workaround during the development of #108471, where we move files around
+        but some link time dependencies might remain.
+
+        * qmake/mkspecs/features/default_post.prf:
+
+2013-01-31  Simon Hausmann  <[email protected]>
+
         [Qt] Make it possible to compile WebKit2 Qt related files without access to internal WK2 C++ API
         https://bugs.webkit.org/show_bug.cgi?id=108472
 

Modified: trunk/Tools/qmake/mkspecs/features/default_post.prf (141434 => 141435)


--- trunk/Tools/qmake/mkspecs/features/default_post.prf	2013-01-31 18:24:04 UTC (rev 141434)
+++ trunk/Tools/qmake/mkspecs/features/default_post.prf	2013-01-31 18:32:12 UTC (rev 141435)
@@ -13,7 +13,7 @@
 # Enable dynamic instead of static libraries for development
 # Avoid it with debug_and_release, it can cause the application to load both the debug and release
 # dependent libraries when using frameworks on Mac.
-!production_build:!debug_and_release:!buildbot:!win*: CONFIG += force_static_libs_as_shared
+!production_build:!debug_and_release:!buildbot:!win*:!build?(webkit2): CONFIG += force_static_libs_as_shared
 
 root_project_file: finalizeConfigure()
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to