Title: [88042] releases/WebKitGTK/webkit-1.4
Revision
88042
Author
[email protected]
Date
2011-06-03 13:22:09 -0700 (Fri, 03 Jun 2011)

Log Message

http://trac.webkit.org/changeset/86084

Modified Paths


Diff

Modified: releases/WebKitGTK/webkit-1.4/ChangeLog (88041 => 88042)


--- releases/WebKitGTK/webkit-1.4/ChangeLog	2011-06-03 20:07:53 UTC (rev 88041)
+++ releases/WebKitGTK/webkit-1.4/ChangeLog	2011-06-03 20:22:09 UTC (rev 88042)
@@ -1,5 +1,13 @@
 2011-05-09  Xan Lopez  <[email protected]>
 
+        Reviewed by Gustavo Noronha.
+
+        Fix logic in GCC version detection, it was reversed.
+
+        * configure.ac:
+
+2011-05-09  Xan Lopez  <[email protected]>
+
         Reviewed by Martin Robinson.
 
         [GTK] Remove C++0x compat mode warnings for GCC >= 4.6.0

Modified: releases/WebKitGTK/webkit-1.4/configure.ac (88041 => 88042)


--- releases/WebKitGTK/webkit-1.4/configure.ac	2011-06-03 20:07:53 UTC (rev 88041)
+++ releases/WebKitGTK/webkit-1.4/configure.ac	2011-06-03 20:22:09 UTC (rev 88042)
@@ -103,7 +103,7 @@
 # cleanly with that.
 if test "$CXX" = "g++"; then
    CXX_VERSION=`$CXX -dumpversion`
-   AX_COMPARE_VERSION([4.6.0],[ge],[$CXX_VERSION],CXXFLAGS="$CXXFLAGS -Wno-c++0x-compat")
+   AX_COMPARE_VERSION([$CXX_VERSION],[ge],[4.6.0],CXXFLAGS="$CXXFLAGS -Wno-c++0x-compat")
 fi
 
 # pthread (not needed on Windows)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to