[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-10851-g50815da

tony at chromium.org tony at chromium.org
Wed Dec 22 17:49:08 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 1c354a0fef6a7a965670a0e28bf3d65c9c4383bc
Author: tony at chromium.org <tony at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 30 21:49:25 2010 +0000

    2010-11-30  Tony Chang  <tony at chromium.org>
    
            Reviewed by James Robinson.
    
            [chromium] enable WebCore compiler warnings on Linux take 3
            https://bugs.webkit.org/show_bug.cgi?id=50258
    
            * WebCore.gyp/WebCore.gyp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@72960 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d012553..310671f 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-11-30  Tony Chang  <tony at chromium.org>
+
+        Reviewed by James Robinson.
+
+        [chromium] enable WebCore compiler warnings on Linux take 3
+        https://bugs.webkit.org/show_bug.cgi?id=50258
+
+        * WebCore.gyp/WebCore.gyp:
+
 2010-11-30  Mario Sanchez Prada  <msanchez at igalia.com>
 
         Reviewed by Chris Fleizach.
diff --git a/WebCore/WebCore.gyp/WebCore.gyp b/WebCore/WebCore.gyp/WebCore.gyp
index 41faea2..7979d1f 100644
--- a/WebCore/WebCore.gyp/WebCore.gyp
+++ b/WebCore/WebCore.gyp/WebCore.gyp
@@ -245,9 +245,6 @@
           '../platform/mac',
           '../platform/text/mac',
         ],
-        # enable -Wall and -Werror, just for Linux builds for now
-        # FIXME: Also enable this for Linux/Windows after verifying no warnings
-        'chromium_code': 1,
       }],
       ['OS=="win"', {
         'webcore_include_dirs': [
@@ -256,6 +253,10 @@
           '../platform/text/win',
           '../platform/win',
         ],
+      },{
+        # enable -Wall and -Werror, just for Mac and Linux builds for now
+        # FIXME: Also enable this for Windows after verifying no warnings
+        'chromium_code': 1,
       }],
       ['OS=="win" and buildtype=="Official"', {
         # On windows official release builds, we try to preserve symbol space.
@@ -273,7 +274,7 @@
           '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources7.cpp',
           '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources8.cpp',
         ],
-      }]
+      }],
     ],
   },
   'targets': [
@@ -1338,6 +1339,11 @@
             ['exclude', 'rendering/RenderThemeChromiumSkia\\.cpp$'],
           ],
         }],
+        ['(OS=="linux" or OS=="freebsd" or OS=="openbsd") and gcc_version==42', {
+          # Due to a bug in gcc 4.2.1 (the current version on hardy), we get
+          # warnings about uninitialized this.7.
+          'cflags': ['-Wno-uninitialized'],
+        }],
         ['OS!="linux" and OS!="freebsd"', {
           'sources/': [
             ['exclude', '(Gtk|Linux)\\.cpp$'],

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list