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

xan at webkit.org xan at webkit.org
Wed Dec 22 13:36:25 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 3714c40e2e3dbcba119625377bd8d3528a7a3fd0
Author: xan at webkit.org <xan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 21 10:55:13 2010 +0000

    2010-09-21  Xan Lopez  <xlopez at igalia.com>
    
            Reviewed by Martin Robinson.
    
            [GTK] Fix --disable-jit
            https://bugs.webkit.org/show_bug.cgi?id=46080
    
            Manually define ENABLE_JIT to 0 when we want the feature disabled.
    
            If the value is undefined Platform.h will enable it again
            automatically in some platforms, which is probably not what the
            user wanted if he passed --disable-jit.
    
            * configure.ac:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67938 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/ChangeLog b/ChangeLog
index efe01a5..0aab315 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2010-09-21  Xan Lopez  <xlopez at igalia.com>
+
+        Reviewed by Martin Robinson.
+
+        [GTK] Fix --disable-jit
+        https://bugs.webkit.org/show_bug.cgi?id=46080
+
+        Manually define ENABLE_JIT to 0 when we want the feature disabled.
+
+        If the value is undefined Platform.h will enable it again
+        automatically in some platforms, which is probably not what the
+        user wanted if he passed --disable-jit.
+
+        * configure.ac:
+
 2010-09-18  Kevin Ollivier  <kevino at theolliviers.com>
 
         [wx] Build fix, fix use of wrong case in name.
diff --git a/configure.ac b/configure.ac
index d418f71..623353f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -705,6 +705,8 @@ if test "$enable_jit" = "yes"; then
             enable_jit="no (CPU '$host_cpu' not supported)"
         ;;
     esac
+else
+        AC_DEFINE([ENABLE_JIT], [0], [Define to enable JIT])
 fi
 AC_MSG_RESULT([$enable_jit])
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list