[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 14:55:05 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 18833571f97417f07bc2f7da33cb9e86ec275aac
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 25 04:39:15 2010 +0000

    2010-10-24  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by David Kilzer.
    
            Check endianness with __BIG_ENDIAN in RVCT.
            https://bugs.webkit.org/show_bug.cgi?id=46122
    
            RVCT defines __BIG_ENDIAN if compiling for a big-endian target.
    
            * wtf/Platform.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70434 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index ecd5af4..8efc585 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-10-24  Kwang Yul Seo  <skyul at company100.net>
+
+        Reviewed by David Kilzer.
+
+        Check endianness with __BIG_ENDIAN in RVCT.
+        https://bugs.webkit.org/show_bug.cgi?id=46122
+
+        RVCT defines __BIG_ENDIAN if compiling for a big-endian target.
+
+        * wtf/Platform.h:
+
 2010-10-24  Dan Bernstein  <mitz at apple.com>
 
         Rubber-stamped by Dave Kilzer.
diff --git a/JavaScriptCore/wtf/Platform.h b/JavaScriptCore/wtf/Platform.h
index 946192b..e2aca61 100644
--- a/JavaScriptCore/wtf/Platform.h
+++ b/JavaScriptCore/wtf/Platform.h
@@ -210,7 +210,7 @@
     || defined(_ARM_)
 #define WTF_CPU_ARM 1
 
-#if defined(__ARMEB__)
+#if defined(__ARMEB__) || (COMPILER(RVCT) && defined(__BIG_ENDIAN))
 #define WTF_CPU_BIG_ENDIAN 1
 
 #elif !defined(__ARM_EABI__) \

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list