Title: [149446] trunk/Tools
Revision
149446
Author
[email protected]
Date
2013-05-01 12:10:35 -0700 (Wed, 01 May 2013)

Log Message

[TestWebKitAPI] <WebKit2/WebKit2_C.h> being included in GTK WK1-only builds
https://bugs.webkit.org/show_bug.cgi?id=115470

Reviewed by Martin Robinson.

In the TestWebKitAPI's config.h header, only include the <WebKit2/WebKit2_C.h> header when
not building either of the IOS, Windows or GTK-WK1 platforms.

Up until now the header was included for everything but the IOS and Windows platforms due to
an incorrectly stated condition regarding the GTK platform.

* TestWebKitAPI/config.h:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (149445 => 149446)


--- trunk/Tools/ChangeLog	2013-05-01 19:09:32 UTC (rev 149445)
+++ trunk/Tools/ChangeLog	2013-05-01 19:10:35 UTC (rev 149446)
@@ -1,5 +1,20 @@
 2013-05-01  Zan Dobersek  <[email protected]>
 
+        [TestWebKitAPI] <WebKit2/WebKit2_C.h> being included in GTK WK1-only builds
+        https://bugs.webkit.org/show_bug.cgi?id=115470
+
+        Reviewed by Martin Robinson.
+
+        In the TestWebKitAPI's config.h header, only include the <WebKit2/WebKit2_C.h> header when
+        not building either of the IOS, Windows or GTK-WK1 platforms.
+
+        Up until now the header was included for everything but the IOS and Windows platforms due to
+        an incorrectly stated condition regarding the GTK platform.
+
+        * TestWebKitAPI/config.h:
+
+2013-05-01  Zan Dobersek  <[email protected]>
+
         [GTK] Split the forwarding headers stamp in the TestWebKitAPI GNUmakefile.am
         https://bugs.webkit.org/show_bug.cgi?id=115469
 

Modified: trunk/Tools/TestWebKitAPI/config.h (149445 => 149446)


--- trunk/Tools/TestWebKitAPI/config.h	2013-05-01 19:09:32 UTC (rev 149445)
+++ trunk/Tools/TestWebKitAPI/config.h	2013-05-01 19:10:35 UTC (rev 149446)
@@ -68,7 +68,7 @@
 
 #include <stdint.h>
 
-#if !PLATFORM(IOS) && (!PLATFORM(WIN) || (PLATFORM(GTK) && defined(BUILDING_WEBKIT2__)))
+#if !PLATFORM(IOS) && !PLATFORM(WIN) && !(PLATFORM(GTK) && !defined(BUILDING_WEBKIT2__))
 #include <WebKit2/WebKit2_C.h>
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to