[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198
jknotten at chromium.org
jknotten at chromium.org
Sun Feb 20 23:32:26 UTC 2011
The following commit has been merged in the webkit-1.3 branch:
commit 5fca8891c050386a377f0096caeca3b6f55ef66e
Author: jknotten at chromium.org <jknotten at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Jan 21 15:51:14 2011 +0000
2011-01-21 John Knottenbelt <jknotten at chromium.org>
Reviewed by Jeremy Orlow.
Turn off uninitialized errors for ARM linux build.
https://bugs.webkit.org/show_bug.cgi?id=52893
Fix ARM compiler breakage.
* WebCore.gyp/WebCore.gyp:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76347 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index e5668ce..97ad274 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2011-01-21 John Knottenbelt <jknotten at chromium.org>
+
+ Reviewed by Jeremy Orlow.
+
+ Turn off uninitialized errors for ARM linux build.
+ https://bugs.webkit.org/show_bug.cgi?id=52893
+
+ Fix ARM compiler breakage.
+
+ * WebCore.gyp/WebCore.gyp:
+
2011-01-21 Mikhail Naganov <mnaganov at chromium.org>
Reviewed by Yury Semikhatsky.
diff --git a/Source/WebCore/WebCore.gyp/WebCore.gyp b/Source/WebCore/WebCore.gyp/WebCore.gyp
index 738960d..ad49e5d 100644
--- a/Source/WebCore/WebCore.gyp/WebCore.gyp
+++ b/Source/WebCore/WebCore.gyp/WebCore.gyp
@@ -1136,6 +1136,10 @@
'<(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