summaryrefslogtreecommitdiffstats
path: root/WebKitLibraries/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'WebKitLibraries/ChangeLog')
-rw-r--r--WebKitLibraries/ChangeLog58
1 files changed, 58 insertions, 0 deletions
diff --git a/WebKitLibraries/ChangeLog b/WebKitLibraries/ChangeLog
index 68cd1c4..0939954 100644
--- a/WebKitLibraries/ChangeLog
+++ b/WebKitLibraries/ChangeLog
@@ -1,3 +1,61 @@
+2010-07-12 Mark Rowe <mrowe@apple.com>
+
+ Rubber-stamped by Sam Weinig.
+
+ Update WebKitSystemInterface.
+
+ * libWebKitSystemInterfaceLeopard.a:
+ * libWebKitSystemInterfaceSnowLeopard.a:
+ * libWebKitSystemInterfaceTiger.a:
+
+2010-07-12 Adam Roben <aroben@apple.com>
+
+ Stop generating stripped symbols for Release builds
+
+ It turns out we can strip the symbols after-the-fact using PDBCopy.
+
+ Fixes <http://webkit.org/b/42085>.
+
+ Reviewed by Steve Falkenburg.
+
+ * win/tools/vsprops/release.vsprops: Removed the StripPrivateSymbols
+ attribute, which caused link.exe to generate a stripped PDB file for
+ each project.
+
+2010-07-08 Eric Carlson <eric.carlson@apple.com>
+
+ Reviewed by Dan Bernstein.
+
+ Update WebKitSystemInterface.
+
+ * libWebKitSystemInterfaceLeopard.a:
+ * libWebKitSystemInterfaceSnowLeopard.a:
+ * libWebKitSystemInterfaceTiger.a:
+
+2010-07-07 Dumitru Daniliuc <dumi@chromium.org>
+
+ Reviewed by Adam Roben.
+
+ Disable MSVC warning 4288.
+ https://bugs.webkit.org/show_bug.cgi?id=41804
+
+ MSVC has a non-standard extension that allows variables declared
+ in for-loops to remain visible in the same scope even after
+ exiting the for-loop
+ (http://msdn.microsoft.com/en-us/library/bk5hc10s.aspx). The /Ze
+ option (turned on by default) enables all MSVC extensions, and
+ /Zc:forScope- tells the compiler to issue a C4288 warning when the
+ same variable is declared in the for-loop and re-declared later in
+ the same scope.
+
+ There seems to be a bug in VS2005 that erroneously enables
+ /Zc:forScope- even when that option is not specified
+ (http://connect.microsoft.com/VisualStudio/feedback/details/338010/bogus-compiler-warning-c4288). Looks
+ like our build got hit by that bug, so we need to disable warning
+ 4288 to fix it.
+
+ * win/tools/vsprops/common.vsprops:
+
2010-07-01 Simon Fraser <simon.fraser@apple.com>
Reviewed by Sam Weinig.