Title: [123253] trunk
Revision
123253
Author
commit-qu...@webkit.org
Date
2012-07-20 13:09:02 -0700 (Fri, 20 Jul 2012)

Log Message

[Chromium] Compilation fails under gcc 4.7
https://bugs.webkit.org/show_bug.cgi?id=90227

Patch by Han Shen <shen...@google.com> on 2012-07-20
Reviewed by Tony Chang.

Disable warnings about c++0x compatibility in gcc newer than 4.6.

Source/_javascript_Core:

* _javascript_Core.gyp/_javascript_Core.gyp:

Source/WebCore:

* WebCore.gyp/WebCore.gyp:

Source/WebKit/chromium:

* WebKit.gyp:
* WebKitUnitTests.gyp:

Source/WTF:

* WTF.gyp/WTF.gyp:

Tools:

* DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (123252 => 123253)


--- trunk/Source/_javascript_Core/ChangeLog	2012-07-20 20:07:18 UTC (rev 123252)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-07-20 20:09:02 UTC (rev 123253)
@@ -1,3 +1,14 @@
+2012-07-20  Han Shen  <shen...@google.com>
+
+        [Chromium] Compilation fails under gcc 4.7
+        https://bugs.webkit.org/show_bug.cgi?id=90227
+
+        Reviewed by Tony Chang.
+
+        Disable warnings about c++0x compatibility in gcc newer than 4.6.
+
+        * _javascript_Core.gyp/_javascript_Core.gyp:
+
 2012-07-18  Filip Pizlo  <fpi...@apple.com>
 
         DFG cell checks should be hoisted

Modified: trunk/Source/_javascript_Core/_javascript_Core.gyp/_javascript_Core.gyp (123252 => 123253)


--- trunk/Source/_javascript_Core/_javascript_Core.gyp/_javascript_Core.gyp	2012-07-20 20:07:18 UTC (rev 123252)
+++ trunk/Source/_javascript_Core/_javascript_Core.gyp/_javascript_Core.gyp	2012-07-20 20:09:02 UTC (rev 123253)
@@ -47,7 +47,7 @@
     ],
   },
   'conditions': [
-    ['os_posix == 1 and OS != "mac" and gcc_version==46', {
+    ['os_posix == 1 and OS != "mac" and gcc_version>=46', {
       'target_defaults': {
         # Disable warnings about c++0x compatibility, as some names (such as nullptr) conflict
         # with upcoming c++0x types.

Modified: trunk/Source/WTF/ChangeLog (123252 => 123253)


--- trunk/Source/WTF/ChangeLog	2012-07-20 20:07:18 UTC (rev 123252)
+++ trunk/Source/WTF/ChangeLog	2012-07-20 20:09:02 UTC (rev 123253)
@@ -1,3 +1,14 @@
+2012-07-20  Han Shen  <shen...@google.com>
+
+        [Chromium] Compilation fails under gcc 4.7
+        https://bugs.webkit.org/show_bug.cgi?id=90227
+
+        Reviewed by Tony Chang.
+
+        Disable warnings about c++0x compatibility in gcc newer than 4.6.
+
+        * WTF.gyp/WTF.gyp:
+
 2012-07-19  Dan Bernstein  <m...@apple.com>
 
         The ATSUI-based complex text code is unused

Modified: trunk/Source/WTF/WTF.gyp/WTF.gyp (123252 => 123253)


--- trunk/Source/WTF/WTF.gyp/WTF.gyp	2012-07-20 20:07:18 UTC (rev 123252)
+++ trunk/Source/WTF/WTF.gyp/WTF.gyp	2012-07-20 20:09:02 UTC (rev 123253)
@@ -44,7 +44,7 @@
     ],
   },
   'conditions': [
-    ['os_posix == 1 and OS != "mac" and gcc_version==46', {
+    ['os_posix == 1 and OS != "mac" and gcc_version>=46', {
       'target_defaults': {
         # Disable warnings about c++0x compatibility, as some names (such as nullptr) conflict
         # with upcoming c++0x types.

Modified: trunk/Source/WebCore/ChangeLog (123252 => 123253)


--- trunk/Source/WebCore/ChangeLog	2012-07-20 20:07:18 UTC (rev 123252)
+++ trunk/Source/WebCore/ChangeLog	2012-07-20 20:09:02 UTC (rev 123253)
@@ -1,3 +1,14 @@
+2012-07-20  Han Shen  <shen...@google.com>
+
+        [Chromium] Compilation fails under gcc 4.7
+        https://bugs.webkit.org/show_bug.cgi?id=90227
+
+        Reviewed by Tony Chang.
+
+        Disable warnings about c++0x compatibility in gcc newer than 4.6.
+
+        * WebCore.gyp/WebCore.gyp:
+
 2012-07-20  Vincent Scheib  <sch...@chromium.org>
 
         Unreviewed compile fix, r123247 included unintended changes to Document.cpp.

Modified: trunk/Source/WebCore/WebCore.gyp/WebCore.gyp (123252 => 123253)


--- trunk/Source/WebCore/WebCore.gyp/WebCore.gyp	2012-07-20 20:07:18 UTC (rev 123252)
+++ trunk/Source/WebCore/WebCore.gyp/WebCore.gyp	2012-07-20 20:09:02 UTC (rev 123253)
@@ -283,7 +283,7 @@
         'cflags!': ['-g'],
       },
     }],
-    ['os_posix==1 and OS!="mac" and gcc_version==46', {
+    ['os_posix==1 and OS!="mac" and gcc_version>=46', {
       'target_defaults': {
         # Disable warnings about c++0x compatibility, as some names (such as nullptr) conflict
         # with upcoming c++0x types.

Modified: trunk/Source/WebKit/chromium/ChangeLog (123252 => 123253)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-07-20 20:07:18 UTC (rev 123252)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-07-20 20:09:02 UTC (rev 123253)
@@ -1,3 +1,15 @@
+2012-07-20  Han Shen  <shen...@google.com>
+
+        [Chromium] Compilation fails under gcc 4.7
+        https://bugs.webkit.org/show_bug.cgi?id=90227
+
+        Reviewed by Tony Chang.
+
+        Disable warnings about c++0x compatibility in gcc newer than 4.6.
+
+        * WebKit.gyp:
+        * WebKitUnitTests.gyp:
+
 2012-07-20  Adam Barth  <aba...@webkit.org>
 
         [Chromium] Add WebView::zoomToFindInPageRect for Android

Modified: trunk/Source/WebKit/chromium/WebKit.gyp (123252 => 123253)


--- trunk/Source/WebKit/chromium/WebKit.gyp	2012-07-20 20:07:18 UTC (rev 123252)
+++ trunk/Source/WebKit/chromium/WebKit.gyp	2012-07-20 20:09:02 UTC (rev 123253)
@@ -1048,7 +1048,7 @@
         },
     ], # targets
     'conditions': [
-        ['os_posix==1 and OS!="mac" and gcc_version==46', {
+        ['os_posix==1 and OS!="mac" and gcc_version>=46', {
             'target_defaults': {
                 # Disable warnings about c++0x compatibility, as some names (such
                 # as nullptr) conflict with upcoming c++0x types.

Modified: trunk/Source/WebKit/chromium/WebKitUnitTests.gyp (123252 => 123253)


--- trunk/Source/WebKit/chromium/WebKitUnitTests.gyp	2012-07-20 20:07:18 UTC (rev 123252)
+++ trunk/Source/WebKit/chromium/WebKitUnitTests.gyp	2012-07-20 20:09:02 UTC (rev 123253)
@@ -126,7 +126,7 @@
         }                
     ], # targets
     'conditions': [
-        ['os_posix==1 and OS!="mac" and gcc_version==46', {
+        ['os_posix==1 and OS!="mac" and gcc_version>=46', {
             'target_defaults': {
                 # Disable warnings about c++0x compatibility, as some names (such
                 # as nullptr) conflict with upcoming c++0x types.

Modified: trunk/Tools/ChangeLog (123252 => 123253)


--- trunk/Tools/ChangeLog	2012-07-20 20:07:18 UTC (rev 123252)
+++ trunk/Tools/ChangeLog	2012-07-20 20:09:02 UTC (rev 123253)
@@ -1,3 +1,14 @@
+2012-07-20  Han Shen  <shen...@google.com>
+
+        [Chromium] Compilation fails under gcc 4.7
+        https://bugs.webkit.org/show_bug.cgi?id=90227
+
+        Reviewed by Tony Chang.
+
+        Disable warnings about c++0x compatibility in gcc newer than 4.6.
+
+        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
+
 2012-07-20  Dirk Pranke  <dpra...@chromium.org>
 
         REGRESSION: run-perf-tests --pause-before-testing is broken

Modified: trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp (123252 => 123253)


--- trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp	2012-07-20 20:07:18 UTC (rev 123252)
+++ trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp	2012-07-20 20:09:02 UTC (rev 123253)
@@ -424,7 +424,7 @@
                 },
             }],
         }],
-        ['os_posix==1 and OS!="mac" and gcc_version==46', {
+        ['os_posix==1 and OS!="mac" and gcc_version>=46', {
             'target_defaults': {
                 # Disable warnings about c++0x compatibility, as some names (such
                 # as nullptr) conflict with upcoming c++0x types.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to