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

barraclough at apple.com barraclough at apple.com
Wed Dec 22 11:31:25 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit bcc37738ca6ed6c93363ece1d9daeeda4ca7f6d1
Author: barraclough at apple.com <barraclough at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jul 28 00:04:29 2010 +0000

    Oh! that makes more sense!  Maybe C++-style comments are bringing teh bad mojo.
    
    * wtf/Platform.h:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64182 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index e567e93..207b7fb 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,11 @@
 2010-07-27  Gavin Barraclough  <barraclough at apple.com>
 
+        Oh! that makes more sense!  Maybe C++-style comments are bringing teh bad mojo.
+
+        * wtf/Platform.h:
+
+2010-07-27  Gavin Barraclough  <barraclough at apple.com>
+
         Speculative build fix for GTK/64 ... seems to be barfing on a comment o_O
 
         * wtf/Platform.h:
diff --git a/JavaScriptCore/wtf/Platform.h b/JavaScriptCore/wtf/Platform.h
index 580d814..77e3f90 100644
--- a/JavaScriptCore/wtf/Platform.h
+++ b/JavaScriptCore/wtf/Platform.h
@@ -919,19 +919,19 @@ on MinGW. See https://bugs.webkit.org/show_bug.cgi?id=29268 */
 #define ENABLE_REPAINT_THROTTLING 0
 #endif
 
-// Disable the JIT on versiond of GCC prior to 4.1
+/* Disable the JIT on versiond of GCC prior to 4.1 */
 #if !defined(ENABLE_JIT) && COMPILER(GCC) && !GCC_VERSION_AT_LEAST(4,1,0)
 #define ENABLE_JIT 0
 #endif
 
-// The JIT is enabled by default on all x86, x64-64, ARM & MIPS platforms.
+/* The JIT is enabled by default on all x86, x64-64, ARM & MIPS platforms. */
 #if !defined(ENABLE_JIT) \
     && (CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(MIPS)) \
     && (OS(DARWIN) || !COMPILER(GCC) || GCC_VERSION_AT_LEAST(4,1,0))
 #define ENABLE_JIT 1
 #endif
 
-// Ensure that either the JIT or the interpreter has been enabled.
+/* Ensure that either the JIT or the interpreter has been enabled. */
 #if !defined(ENABLE_INTERPRETER) && !ENABLE(JIT)
 #define ENABLE_INTERPRETER 1
 #endif
@@ -939,7 +939,7 @@ on MinGW. See https://bugs.webkit.org/show_bug.cgi?id=29268 */
 #error You have to have at least one execution model enabled to build JSC
 #endif
 
-// Configure the JIT
+/* Configure the JIT */
 #if ENABLE(JIT)
     #if CPU(ARM_TRADITIONAL)
     #if !defined(ENABLE_JIT_USE_SOFT_MODULO) && WTF_ARM_ARCH_AT_LEAST(5)
@@ -973,7 +973,7 @@ on MinGW. See https://bugs.webkit.org/show_bug.cgi?id=29268 */
 #define JSC_HOST_CALL
 #endif
 
-// Configure the interpreter
+/* Configure the interpreter */
 #if COMPILER(GCC)
 #define HAVE_COMPUTED_GOTO 1
 #endif

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list