[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 11:27:07 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit d41f756c986d0b0cc1b123145ef1d536ad11db32
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Jul 24 12:54:38 2010 +0000

    2010-07-24  Riccardo Magliocchetti  <riccardo.magliocchetti at gmail.com>
    
            Reviewed by Xan Lopez.
    
            [GTK] Enable jit compilation on arm
            https://bugs.webkit.org/show_bug.cgi?id=42856
    
            Add missing bits to configure.ac to build the arm jit.
            Compile and tested on debian sid armel on a qemu vm.
    
            * configure.ac:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64008 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/ChangeLog b/ChangeLog
index 00b437e..205c9f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2010-07-24  Riccardo Magliocchetti  <riccardo.magliocchetti at gmail.com>
+
+        Reviewed by Xan Lopez.
+
+        [GTK] Enable jit compilation on arm
+        https://bugs.webkit.org/show_bug.cgi?id=42856
+
+        Add missing bits to configure.ac to build the arm jit.
+        Compile and tested on debian sid armel on a qemu vm.
+
+        * configure.ac:
+
 2010-07-23  Rafael Antognolli  <antognolli at profusion.mobi>
 
         Reviewed by Antonio Gomes.
diff --git a/configure.ac b/configure.ac
index 1e0194e..1e99b11 100644
--- a/configure.ac
+++ b/configure.ac
@@ -677,6 +677,11 @@ AC_ARG_ENABLE([jit],
               [],[enable_jit="yes"])
 if test "$enable_jit" = "yes"; then
     case "$host_cpu" in
+        arm*)
+            AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
+            AC_DEFINE([ENABLE_YARR], [1], [Define to enable YARR])
+            AC_DEFINE([ENABLE_YARR_JIT], [1], [Define to enable YARR JIT])
+        ;;
         i*86|x86_64)
             AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
             AC_DEFINE([ENABLE_YARR], [1], [Define to enable YARR])

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list