[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

tony at chromium.org tony at chromium.org
Mon Feb 21 00:35:37 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 2b278b360331947e715a80ac07fcf6f3b32f2403
Author: tony at chromium.org <tony at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Feb 2 00:55:40 2011 +0000

    2011-02-01  Tony Chang  <tony at chromium.org>
    
            Reviewed by Kent Tamura.
    
            [chromium] disable arm uninitialized variable warnings
            https://bugs.webkit.org/show_bug.cgi?id=53553
    
            We just got another error:
            third_party/WebKit/Source/WebCore/css/CSSPrimitiveValue.cpp:123:error:
            'colorTransparent.unstatic.4879' may be used uninitialized in this
            function
    
            * WebCore.gyp/WebCore.gyp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@77335 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index 43db316..f45f72b 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,17 @@
+2011-02-01  Tony Chang  <tony at chromium.org>
+
+        Reviewed by Kent Tamura.
+
+        [chromium] disable arm uninitialized variable warnings
+        https://bugs.webkit.org/show_bug.cgi?id=53553
+
+        We just got another error:
+        third_party/WebKit/Source/WebCore/css/CSSPrimitiveValue.cpp:123:error:
+        'colorTransparent.unstatic.4879' may be used uninitialized in this
+        function
+
+        * WebCore.gyp/WebCore.gyp:
+
 2011-02-01  chris reiss  <christopher.reiss at nokia.com>
 
         Reviewed by Adam Barth.
diff --git a/Source/WebCore/WebCore.gyp/WebCore.gyp b/Source/WebCore/WebCore.gyp/WebCore.gyp
index 2594d29..5377264 100644
--- a/Source/WebCore/WebCore.gyp/WebCore.gyp
+++ b/Source/WebCore/WebCore.gyp/WebCore.gyp
@@ -104,6 +104,11 @@
         'cflags!': ['-g'],
       },
     }],
+    ['OS=="linux" and target_arch=="arm"', {
+      # Due to a bug in gcc arm, we get warnings about uninitialized timesNewRoman.unstatic.3258
+      # and colorTransparent.unstatic.4879.
+      'cflags': ['-Wno-uninitialized'],
+    }],
   ],  # conditions
 
   'variables': {
@@ -1149,10 +1154,6 @@
             '<(chromium_src_dir)/third_party/harfbuzz/harfbuzz.gyp:harfbuzz',
           ],
         }],
-        ['OS=="linux" and target_arch=="arm"', {
-          # Due to a bug in gcc arm, we get warnings about uninitialized timesNewRoman.unstatic.3258
-          'cflags': ['-Wno-uninitialized'],
-        }],
         ['OS=="mac"', {
           # Necessary for Mac .mm stuff.
           'include_dirs': [

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list