Title: [91409] trunk/Source/WebCore
Revision
91409
Author
dba...@webkit.org
Date
2011-07-20 14:56:05 -0700 (Wed, 20 Jul 2011)

Log Message

2011-07-20  Daniel Bates  <dba...@rim.com>

        Attempt to fix the GTK build after changeset 91396 <http://trac.webkit.org/changeset/91396>
        (https://bugs.webkit.org/show_bug.cgi?id=64764).

        * xml/parser/MarkupTokenBase.h: #include <stdio.h> in debug build for printf(3), which is used in
        MarkupTokenBase::printString() and MarkupTokenBase::printAttrs().

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (91408 => 91409)


--- trunk/Source/WebCore/ChangeLog	2011-07-20 21:52:18 UTC (rev 91408)
+++ trunk/Source/WebCore/ChangeLog	2011-07-20 21:56:05 UTC (rev 91409)
@@ -1,3 +1,11 @@
+2011-07-20  Daniel Bates  <dba...@rim.com>
+
+        Attempt to fix the GTK build after changeset 91396 <http://trac.webkit.org/changeset/91396>
+        (https://bugs.webkit.org/show_bug.cgi?id=64764).
+
+        * xml/parser/MarkupTokenBase.h: #include <stdio.h> in debug build for printf(3), which is used in
+        MarkupTokenBase::printString() and MarkupTokenBase::printAttrs().
+
 2011-07-19  Vsevolod Vlasov  <vse...@chromium.org>
 
         Web Inspector: Add support for disabling cache in web inspector.

Modified: trunk/Source/WebCore/xml/parser/MarkupTokenBase.h (91408 => 91409)


--- trunk/Source/WebCore/xml/parser/MarkupTokenBase.h	2011-07-20 21:52:18 UTC (rev 91408)
+++ trunk/Source/WebCore/xml/parser/MarkupTokenBase.h	2011-07-20 21:56:05 UTC (rev 91409)
@@ -31,6 +31,10 @@
 #include <wtf/PassOwnPtr.h>
 #include <wtf/Vector.h>
 
+#ifndef NDEBUG
+#include <stdio.h>
+#endif
+
 namespace WebCore {
 
 class DoctypeDataBase {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to