Title: [139052] trunk/Tools
Revision
139052
Author
[email protected]
Date
2013-01-08 05:28:41 -0800 (Tue, 08 Jan 2013)

Log Message

[Qt] Fix libxml2 config test
https://bugs.webkit.org/show_bug.cgi?id=106317

Patch by Heikki Paajanen <[email protected]> on 2013-01-08
Reviewed by Simon Hausmann.

Don't assume standard include/libxml2, libxml-2.0.pc should know
where it's headers are.

* qmake/config.tests/libxml2/libxml2.cpp: Fix include

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (139051 => 139052)


--- trunk/Tools/ChangeLog	2013-01-08 11:54:04 UTC (rev 139051)
+++ trunk/Tools/ChangeLog	2013-01-08 13:28:41 UTC (rev 139052)
@@ -1,3 +1,15 @@
+2013-01-08  Heikki Paajanen  <[email protected]>
+
+        [Qt] Fix libxml2 config test
+        https://bugs.webkit.org/show_bug.cgi?id=106317
+
+        Reviewed by Simon Hausmann.
+
+        Don't assume standard include/libxml2, libxml-2.0.pc should know
+        where it's headers are.
+
+        * qmake/config.tests/libxml2/libxml2.cpp: Fix include
+
 2013-01-08  Zan Dobersek  <[email protected]>
 
         [GTK] Make Tools/gtk/generate-gtkdoc compatible with Python 3

Modified: trunk/Tools/qmake/config.tests/libxml2/libxml2.cpp (139051 => 139052)


--- trunk/Tools/qmake/config.tests/libxml2/libxml2.cpp	2013-01-08 11:54:04 UTC (rev 139051)
+++ trunk/Tools/qmake/config.tests/libxml2/libxml2.cpp	2013-01-08 13:28:41 UTC (rev 139052)
@@ -23,7 +23,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <libxml2/libxml/xmlreader.h>
+#include <libxml/xmlreader.h>
 
 int main(int, char**)
 {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to