[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

Gustavo Noronha Silva gns at gnome.org
Thu Apr 8 02:24:30 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 13730e342a2c8a3528d613f7dfc9af46e01b2b49
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Mar 19 06:29:21 2010 +0000

    2010-03-18  Tom Callaway  <tcallawa at redhat.com>
    
            Reviewed by Darin Adler.
    
            Bug 35429: Fix compile on SPARC64
            https://bugs.webkit.org/show_bug.cgi?id=35429
    
            * wtf/Platform.h: Set WTF_USE_JSVALUE64 for SPARC64
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@56215 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index c9b0ba6..d739332 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-03-18  Tom Callaway  <tcallawa at redhat.com>
+
+        Reviewed by Darin Adler.
+
+        Bug 35429: Fix compile on SPARC64
+        https://bugs.webkit.org/show_bug.cgi?id=35429
+
+        * wtf/Platform.h: Set WTF_USE_JSVALUE64 for SPARC64
+
 2010-03-23  Geoffrey Garen  <ggaren at apple.com>
 
         Reviewed by Mark Rowe.
diff --git a/JavaScriptCore/wtf/Platform.h b/JavaScriptCore/wtf/Platform.h
index 3cd4290..92a80d3 100644
--- a/JavaScriptCore/wtf/Platform.h
+++ b/JavaScriptCore/wtf/Platform.h
@@ -860,7 +860,10 @@
 #endif
 
 #if !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32) && !defined(WTF_USE_JSVALUE32_64)
-#if (CPU(X86_64) && (OS(UNIX) || OS(WINDOWS))) || CPU(IA64) || CPU(ALPHA)
+#if (CPU(X86_64) && (OS(UNIX) || OS(WINDOWS))) \
+    || CPU(IA64)  \
+    || CPU(ALPHA) \
+    || CPU(SPARC64)
 #define WTF_USE_JSVALUE64 1
 #elif CPU(ARM) || CPU(PPC64) || CPU(MIPS)
 #define WTF_USE_JSVALUE32 1

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list