Title: [93030] trunk/Source/WebCore
Revision
93030
Author
[email protected]
Date
2011-08-14 05:21:57 -0700 (Sun, 14 Aug 2011)

Log Message

Fix GTK Windows build after r92308.
https://bugs.webkit.org/show_bug.cgi?id=66140

Patch by Kalev Lember <[email protected]> on 2011-08-14
Reviewed by Xan Lopez.

* config.h: Don't try to include WebCoreHeaderDetection.h for GTK.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (93029 => 93030)


--- trunk/Source/WebCore/ChangeLog	2011-08-14 07:02:36 UTC (rev 93029)
+++ trunk/Source/WebCore/ChangeLog	2011-08-14 12:21:57 UTC (rev 93030)
@@ -1,3 +1,12 @@
+2011-08-14  Kalev Lember  <[email protected]>
+
+        Fix GTK Windows build after r92308.
+        https://bugs.webkit.org/show_bug.cgi?id=66140
+
+        Reviewed by Xan Lopez.
+
+        * config.h: Don't try to include WebCoreHeaderDetection.h for GTK.
+
 2011-08-13  Sam Weinig  <[email protected]>
 
         Remove forward declaration of -[WebUndefined dealloc] to appease the bot gods.

Modified: trunk/Source/WebCore/config.h (93029 => 93030)


--- trunk/Source/WebCore/config.h	2011-08-14 07:02:36 UTC (rev 93029)
+++ trunk/Source/WebCore/config.h	2011-08-14 12:21:57 UTC (rev 93030)
@@ -29,7 +29,7 @@
 
 #include <wtf/Platform.h>
 
-#if OS(WINDOWS) && !OS(WINCE) && !PLATFORM(QT) && !PLATFORM(CHROMIUM)
+#if OS(WINDOWS) && !OS(WINCE) && !PLATFORM(QT) && !PLATFORM(CHROMIUM) && !PLATFORM(GTK)
 #include <WebCore/WebCoreHeaderDetection.h>
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to