Title: [99707] trunk/Tools
Revision
99707
Author
[email protected]
Date
2011-11-09 07:02:41 -0800 (Wed, 09 Nov 2011)

Log Message

[Qt] Prospective build fix for Win32/Mac with xmlpatterns

Reviewed by Tor Arne Vestbø.

* qmake/mkspecs/features/features.prf: Disable XSLT support initially.
We default to XSLT support if qxmlpatterns is available. However qxmlpatterns
is not up to the task of full XSLT support, so we should disable it.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (99706 => 99707)


--- trunk/Tools/ChangeLog	2011-11-09 15:00:26 UTC (rev 99706)
+++ trunk/Tools/ChangeLog	2011-11-09 15:02:41 UTC (rev 99707)
@@ -1,5 +1,15 @@
 2011-11-09  Simon Hausmann  <[email protected]>
 
+        [Qt] Prospective build fix for Win32/Mac with xmlpatterns
+
+        Reviewed by Tor Arne Vestbø.
+
+        * qmake/mkspecs/features/features.prf: Disable XSLT support initially.
+        We default to XSLT support if qxmlpatterns is available. However qxmlpatterns
+        is not up to the task of full XSLT support, so we should disable it.
+
+2011-11-09  Simon Hausmann  <[email protected]>
+
         [Qt] Enable exports and constructor functions in static libs
 
         Reviewed by Tor Arne Vestbø.

Modified: trunk/Tools/qmake/mkspecs/features/features.prf (99706 => 99707)


--- trunk/Tools/qmake/mkspecs/features/features.prf	2011-11-09 15:00:26 UTC (rev 99706)
+++ trunk/Tools/qmake/mkspecs/features/features.prf	2011-11-09 15:02:41 UTC (rev 99707)
@@ -110,10 +110,7 @@
 !contains(DEFINES, ENABLE_WEB_TIMING=.): DEFINES += ENABLE_WEB_TIMING=1
 
 # XSLT support with QtXmlPatterns
-!contains(DEFINES, ENABLE_XSLT=.) {
-    contains(QT_CONFIG, xmlpatterns):DEFINES += ENABLE_XSLT=1
-    else:DEFINES += ENABLE_XSLT=0
-}
+!contains(DEFINES, ENABLE_XSLT=.):DEFINES += ENABLE_XSLT=0
 
 # This is experimental and only works on Linux so far.
 contains(DEFINES, WTF_USE_LIBXML2=1) {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to