[SCM] WebKit Debian packaging branch, debian, updated. 0+svn25144-1-1-g78a1e00

Mike Hommey glandium at debian.org
Sun Aug 26 07:53:21 UTC 2007


The branch, debian has been updated
       via  78a1e00a7860399e748830a577cba87ca272fd9e (commit)
      from  c39c859bc4d98f5bdfa97c1ab176dac1ec70f13e (commit)


- Log -----------------------------------------------------------------
commit 78a1e00a7860399e748830a577cba87ca272fd9e
Author: Mike Hommey <glandium at debian.org>
Date:   Sun Aug 26 09:41:07 2007 +0200

    Fix FTBFS on arm
      * JavaScriptCore/wtf/Platform.h: Also test if __arm__ is defined, which
        should fix the FTBFS on arm.

-----------------------------------------------------------------------

Summary of changes:
 JavaScriptCore/wtf/Platform.h |    3 ++-
 debian/changelog              |    7 +++++++
 2 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/JavaScriptCore/wtf/Platform.h b/JavaScriptCore/wtf/Platform.h
index cdc5706..533230e 100644
--- a/JavaScriptCore/wtf/Platform.h
+++ b/JavaScriptCore/wtf/Platform.h
@@ -127,7 +127,8 @@
 #define WTF_PLATFORM_BIG_ENDIAN 1
 #endif
 
-#if defined(arm)
+#if   defined(arm) \
+   || defined(__arm__)
 #define WTF_PLATFORM_ARM 1
 #define WTF_PLATFORM_MIDDLE_ENDIAN 1
 #endif
diff --git a/debian/changelog b/debian/changelog
index ac72f5b..e683b9f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+webkit (0~svn25144-2) UNRELEASED; urgency=low
+
+  * JavaScriptCore/wtf/Platform.h: Also test if __arm__ is defined, which
+    should fix the FTBFS on arm.
+
+ -- Mike Hommey <glandium at debian.org>  Sun, 26 Aug 2007 09:36:02 +0200
+
 webkit (0~svn25144-1) unstable; urgency=low
 
   * New upstream snapshot

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list