[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

commit-queue at webkit.org commit-queue at webkit.org
Fri Jan 21 14:37:45 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit db095ddc464a2a13b21693e5754691a92bad5588
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 23 14:24:50 2010 +0000

    2010-12-23  Lucas De Marchi  <lucas.demarchi at profusion.mobi>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            Fix check by undefined macro
            https://bugs.webkit.org/show_bug.cgi?id=51531
    
            Fix check by undefined macro
    
            When building EFL port with libsoup, BUILDING_GTK__ is not defined,
            leading to warnings during compile. We actually have to use an #ifdef
            instead of an #if.
    
            No change in functionality so no new tests.
    
            * platform/network/soup/cache/webkit/soup-cache.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74555 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 749c938..d25d87f 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,20 @@
+2010-12-23  Lucas De Marchi  <lucas.demarchi at profusion.mobi>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Fix check by undefined macro
+        https://bugs.webkit.org/show_bug.cgi?id=51531
+
+        Fix check by undefined macro
+
+        When building EFL port with libsoup, BUILDING_GTK__ is not defined,
+        leading to warnings during compile. We actually have to use an #ifdef
+        instead of an #if.
+
+        No change in functionality so no new tests.
+
+        * platform/network/soup/cache/webkit/soup-cache.h:
+
 2010-12-23  Jonathan Dixon  <joth at chromium.org>
 
         Reviewed by Steve Block.
diff --git a/WebCore/platform/network/soup/cache/webkit/soup-cache.h b/WebCore/platform/network/soup/cache/webkit/soup-cache.h
index e447cfc..88512f6 100644
--- a/WebCore/platform/network/soup/cache/webkit/soup-cache.h
+++ b/WebCore/platform/network/soup/cache/webkit/soup-cache.h
@@ -23,7 +23,7 @@
 #ifndef WEBKIT_SOUP_CACHE_H
 #define WEBKIT_SOUP_CACHE_H 1
 
-#if BUILDING_GTK__
+#ifdef BUILDING_GTK__
 #include <webkit/webkitdefines.h>
 #else
 #ifndef WEBKIT_API

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list