diff options
Diffstat (limited to 'JavaScriptGlue')
8 files changed, 61 insertions, 3 deletions
diff --git a/JavaScriptGlue/ChangeLog b/JavaScriptGlue/ChangeLog index c7b2dce..12a02ef 100644 --- a/JavaScriptGlue/ChangeLog +++ b/JavaScriptGlue/ChangeLog @@ -1,3 +1,56 @@ +2010-12-22 Dan Bernstein <mitz@apple.com> + + Rubber-stamped by Mark Rowe. + + Changed WebKitTools to Tools in script build phases. + + * JavaScriptGlue.xcodeproj/project.pbxproj: + +2010-12-21 Geoffrey Garen <ggaren@apple.com> + + Reviewed by Gavin Barraclough & Oliver Hunt. + + Added PageAllocationAligned, a cross-platform abstraction for memory allocations with arbitrary alignment requirements + https://bugs.webkit.org/show_bug.cgi?id=51359 + + * ForwardingHeaders/wtf/PageAllocationAligned.h: Added. + +2010-12-21 Daniel Bates <dbates@rim.com> + + Reviewed by Eric Seidel and Darin Adler. + + Deallocate GregorianDateTime.timeZone (if allocated) when copying so that we don't leak memory. + https://bugs.webkit.org/show_bug.cgi?id=51367 + + Add forwarding header for PassOwnArrayPtr.h. + + * ForwardingHeaders/wtf/PassOwnArrayPtr.h: Added. + +2010-12-18 Gavin Barraclough <barraclough@apple.com> + + Reviewed by Oliver Hunt. + + Bug 26276 - Need a mechanism to determine stack extent + + Add forwarding header for StackBounds.h. + + * ForwardingHeaders/wtf/StackBounds.h: Added. + +2010-12-20 Geoffrey Garen <ggaren@apple.com> + + Reviewed by Sam Weinig. + + Factored common page set management into a new PageBlock base class + https://bugs.webkit.org/show_bug.cgi?id=51285 + + * ForwardingHeaders/wtf/PageBlock.h: Added. + +2010-12-01 Geoffrey Garen <ggaren@apple.com> + + Build fix: Added a forwarding header. + + * ForwardingHeaders/wtf/OSAllocator.h: Added. + 2010-10-25 Oliver Hunt <oliver@apple.com> Reviewed by Gavin Barraclough. diff --git a/JavaScriptGlue/Configurations/Version.xcconfig b/JavaScriptGlue/Configurations/Version.xcconfig index d4cb8e7..4b884e2 100644 --- a/JavaScriptGlue/Configurations/Version.xcconfig +++ b/JavaScriptGlue/Configurations/Version.xcconfig @@ -22,7 +22,7 @@ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. MAJOR_VERSION = 534; -MINOR_VERSION = 13; +MINOR_VERSION = 16; TINY_VERSION = 0; FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION); diff --git a/JavaScriptGlue/ForwardingHeaders/wtf/OSAllocator.h b/JavaScriptGlue/ForwardingHeaders/wtf/OSAllocator.h new file mode 100644 index 0000000..637611a --- /dev/null +++ b/JavaScriptGlue/ForwardingHeaders/wtf/OSAllocator.h @@ -0,0 +1 @@ +#include <JavaScriptCore/OSAllocator.h> diff --git a/JavaScriptGlue/ForwardingHeaders/wtf/PageAllocationAligned.h b/JavaScriptGlue/ForwardingHeaders/wtf/PageAllocationAligned.h new file mode 100644 index 0000000..caa8e0d --- /dev/null +++ b/JavaScriptGlue/ForwardingHeaders/wtf/PageAllocationAligned.h @@ -0,0 +1 @@ +#include <JavaScriptCore/PageAllocationAligned.h> diff --git a/JavaScriptGlue/ForwardingHeaders/wtf/PageBlock.h b/JavaScriptGlue/ForwardingHeaders/wtf/PageBlock.h new file mode 100644 index 0000000..49484ff --- /dev/null +++ b/JavaScriptGlue/ForwardingHeaders/wtf/PageBlock.h @@ -0,0 +1 @@ +#include <JavaScriptCore/PageBlock.h> diff --git a/JavaScriptGlue/ForwardingHeaders/wtf/PassOwnArrayPtr.h b/JavaScriptGlue/ForwardingHeaders/wtf/PassOwnArrayPtr.h new file mode 100644 index 0000000..97f4a9d --- /dev/null +++ b/JavaScriptGlue/ForwardingHeaders/wtf/PassOwnArrayPtr.h @@ -0,0 +1 @@ +#include <JavaScriptCore/PassOwnArrayPtr.h> diff --git a/JavaScriptGlue/ForwardingHeaders/wtf/StackBounds.h b/JavaScriptGlue/ForwardingHeaders/wtf/StackBounds.h new file mode 100644 index 0000000..dfec694 --- /dev/null +++ b/JavaScriptGlue/ForwardingHeaders/wtf/StackBounds.h @@ -0,0 +1 @@ +#include <JavaScriptCore/StackBounds.h> diff --git a/JavaScriptGlue/JavaScriptGlue.xcodeproj/project.pbxproj b/JavaScriptGlue/JavaScriptGlue.xcodeproj/project.pbxproj index cec8b14..63cd4a9 100644 --- a/JavaScriptGlue/JavaScriptGlue.xcodeproj/project.pbxproj +++ b/JavaScriptGlue/JavaScriptGlue.xcodeproj/project.pbxproj @@ -332,7 +332,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "if [ -f ../WebKitTools/Scripts/check-for-weak-vtables-and-externals ]; then\n ../WebKitTools/Scripts/check-for-weak-vtables-and-externals || exit $?\nfi"; + shellScript = "if [ -f ../Tools/Scripts/check-for-weak-vtables-and-externals ]; then\n ../Tools/Scripts/check-for-weak-vtables-and-externals || exit $?\nfi"; }; 5D2F7D0A0C6878E000B5B72B /* Update Info.plist with version information */ = { isa = PBXShellScriptBuildPhase; @@ -377,7 +377,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "if [ -f ../WebKitTools/Scripts/check-for-global-initializers ]; then\n ../WebKitTools/Scripts/check-for-global-initializers || exit $?\nfi"; + shellScript = "if [ -f ../Tools/Scripts/check-for-global-initializers ]; then\n ../Tools/Scripts/check-for-global-initializers || exit $?\nfi"; }; /* End PBXShellScriptBuildPhase section */ |
