Title: [98221] trunk/Tools
Revision
98221
Author
[email protected]
Date
2011-10-24 00:53:30 -0700 (Mon, 24 Oct 2011)

Log Message

2011-10-24  Alejandro G. Castro  <[email protected]>

        [WK2] [GTK] WebKitTestRunner crashes with heap corruption
        https://bugs.webkit.org/show_bug.cgi?id=69403

        We did not added autotoolsconfig.h to the config.h file and we
        were adding Platform.h without the config.h in the
        WebKitTestRunnerPrefix.h. Added the autotoolsconfig.h include in
        the Prefix file.

        Reviewed by Martin Robinson.

        * WebKitTestRunner/WebKitTestRunnerPrefix.h:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (98220 => 98221)


--- trunk/Tools/ChangeLog	2011-10-24 07:42:00 UTC (rev 98220)
+++ trunk/Tools/ChangeLog	2011-10-24 07:53:30 UTC (rev 98221)
@@ -1,3 +1,17 @@
+2011-10-24  Alejandro G. Castro  <[email protected]>
+
+        [WK2] [GTK] WebKitTestRunner crashes with heap corruption
+        https://bugs.webkit.org/show_bug.cgi?id=69403
+
+        We did not added autotoolsconfig.h to the config.h file and we
+        were adding Platform.h without the config.h in the
+        WebKitTestRunnerPrefix.h. Added the autotoolsconfig.h include in
+        the Prefix file.
+
+        Reviewed by Martin Robinson.
+
+        * WebKitTestRunner/WebKitTestRunnerPrefix.h:
+
 2011-10-23  Tomasz Morawski  <[email protected]>
 
         [EFL] Remove unused code from EWebLauncher

Modified: trunk/Tools/WebKitTestRunner/WebKitTestRunnerPrefix.h (98220 => 98221)


--- trunk/Tools/WebKitTestRunner/WebKitTestRunnerPrefix.h	2011-10-24 07:42:00 UTC (rev 98220)
+++ trunk/Tools/WebKitTestRunner/WebKitTestRunnerPrefix.h	2011-10-24 07:53:30 UTC (rev 98221)
@@ -34,5 +34,9 @@
 #define min min
 #endif
 
+#if defined(BUILDING_GTK__)
+#include "autotoolsconfig.h"
+#endif /* defined (BUILDING_GTK__) */
+
 #include <wtf/Platform.h>
 #include <WebKit2/WebKit2.h>
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to