Title: [139446] trunk/Source/WebCore
Revision
139446
Author
abe...@webkit.org
Date
2013-01-11 07:55:02 -0800 (Fri, 11 Jan 2013)

Log Message

[Qt] Fix the build if libxslt is not available but libxml2 is
https://bugs.webkit.org/show_bug.cgi?id=106661

Reviewed by Simon Hausmann.

On Linux building the xml parser sources fails if the needed libxslt
dependencies are not installed but libxml2 is.

* WebCore.pri: add libxml2 to pkg-config if not on mac.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (139445 => 139446)


--- trunk/Source/WebCore/ChangeLog	2013-01-11 15:41:11 UTC (rev 139445)
+++ trunk/Source/WebCore/ChangeLog	2013-01-11 15:55:02 UTC (rev 139446)
@@ -1,3 +1,15 @@
+2013-01-11  Andras Becsi  <andras.be...@digia.com>
+
+        [Qt] Fix the build if libxslt is not available but libxml2 is
+        https://bugs.webkit.org/show_bug.cgi?id=106661
+
+        Reviewed by Simon Hausmann.
+
+        On Linux building the xml parser sources fails if the needed libxslt
+        dependencies are not installed but libxml2 is.
+
+        * WebCore.pri: add libxml2 to pkg-config if not on mac.
+
 2013-01-11  Stephen Chenney  <schen...@chromium.org>
         Objects can be re-added to the AXObjectCache during removal
         https://bugs.webkit.org/show_bug.cgi?id=104171

Modified: trunk/Source/WebCore/WebCore.pri (139445 => 139446)


--- trunk/Source/WebCore/WebCore.pri	2013-01-11 15:41:11 UTC (rev 139445)
+++ trunk/Source/WebCore/WebCore.pri	2013-01-11 15:55:02 UTC (rev 139446)
@@ -116,6 +116,8 @@
     } else {
         QT *= xmlpatterns
     }
+} else:!mac:use?(LIBXML2) {
+    PKGCONFIG += libxml-2.0
 }
 
 use?(ZLIB) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to