Title: [126453] trunk
Revision
126453
Author
je...@webkit.org
Date
2012-08-23 11:28:41 -0700 (Thu, 23 Aug 2012)

Log Message

[EFL] Use WTF_USE_SOUP instead BUILDING_SOUP__
https://bugs.webkit.org/show_bug.cgi?id=94744

Reviewed by Gustavo Noronha Silva.

.:

There is no need to define BUILDING_SOUP__ if only WTF_USE_SOUP
is used.

* GNUmakefile.am:
* Source/cmake/OptionsEfl.cmake:

Source/WebKit2:

Use #if defined(WTF_USE_SOUP) instead of #if defined(BUILDING_SOUP__)
since the former is used everywhere.

* Shared/API/c/WKBase.h:

Modified Paths

Diff

Modified: trunk/ChangeLog (126452 => 126453)


--- trunk/ChangeLog	2012-08-23 18:28:23 UTC (rev 126452)
+++ trunk/ChangeLog	2012-08-23 18:28:41 UTC (rev 126453)
@@ -1,3 +1,16 @@
+2012-08-22  Jesus Sanchez-Palencia  <jesus.palen...@openbossa.org>
+
+        [EFL] Use WTF_USE_SOUP instead BUILDING_SOUP__
+        https://bugs.webkit.org/show_bug.cgi?id=94744
+
+        Reviewed by Gustavo Noronha Silva.
+
+        There is no need to define BUILDING_SOUP__ if only WTF_USE_SOUP
+        is used.
+
+        * GNUmakefile.am:
+        * Source/cmake/OptionsEfl.cmake:
+
 2012-08-23  Zan Dobersek  <zandober...@gmail.com>
 
         [Gtk] Move feature defines processing into a GNUmakefile that's simple to autogenerate

Modified: trunk/GNUmakefile.am (126452 => 126453)


--- trunk/GNUmakefile.am	2012-08-23 18:28:23 UTC (rev 126452)
+++ trunk/GNUmakefile.am	2012-08-23 18:28:41 UTC (rev 126453)
@@ -154,7 +154,6 @@
 global_cppflags += \
 	-DBUILDING_CAIRO__=1 \
 	-DBUILDING_GTK__=1 \
-	-DBUILDING_SOUP__=1 \
 	-DWTF_CHANGES
 
 if ENABLE_WEBKIT2

Modified: trunk/Source/WebKit2/ChangeLog (126452 => 126453)


--- trunk/Source/WebKit2/ChangeLog	2012-08-23 18:28:23 UTC (rev 126452)
+++ trunk/Source/WebKit2/ChangeLog	2012-08-23 18:28:41 UTC (rev 126453)
@@ -1,3 +1,15 @@
+2012-08-22  Jesus Sanchez-Palencia  <jesus.palen...@openbossa.org>
+
+        [EFL] Use WTF_USE_SOUP instead BUILDING_SOUP__
+        https://bugs.webkit.org/show_bug.cgi?id=94744
+
+        Reviewed by Gustavo Noronha Silva.
+
+        Use #if defined(WTF_USE_SOUP) instead of #if defined(BUILDING_SOUP__)
+        since the former is used everywhere.
+
+        * Shared/API/c/WKBase.h:
+
 2012-08-23  Christophe Dumez  <christophe.du...@intel.com>
 
         [EFL][WK2] Free ewk context data on program exit.

Modified: trunk/Source/WebKit2/Shared/API/c/WKBase.h (126452 => 126453)


--- trunk/Source/WebKit2/Shared/API/c/WKBase.h	2012-08-23 18:28:23 UTC (rev 126452)
+++ trunk/Source/WebKit2/Shared/API/c/WKBase.h	2012-08-23 18:28:41 UTC (rev 126453)
@@ -37,7 +37,7 @@
 #include <WebKit2/WKBaseGtk.h>
 #endif
 
-#if defined(BUILDING_SOUP__)
+#if defined(WTF_USE_SOUP)
 #include <WebKit2/WKBaseSoup.h>
 #endif
 

Modified: trunk/Source/cmake/OptionsEfl.cmake (126452 => 126453)


--- trunk/Source/cmake/OptionsEfl.cmake	2012-08-23 18:28:23 UTC (rev 126452)
+++ trunk/Source/cmake/OptionsEfl.cmake	2012-08-23 18:28:41 UTC (rev 126453)
@@ -33,7 +33,6 @@
 
 SET(WTF_USE_SOUP 1)
 ADD_DEFINITIONS(-DWTF_USE_SOUP=1)
-ADD_DEFINITIONS(-DBUILDING_SOUP__=1)
 
 ADD_DEFINITIONS(-DENABLE_CONTEXT_MENUS=0)
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to