[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

kevino at webkit.org kevino at webkit.org
Thu Oct 29 20:44:40 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 42ac218cfea67518aa5998968d366c48c163be04
Author: kevino at webkit.org <kevino at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 14 19:01:34 2009 +0000

    Mac build fix, use MIN_REQUIRED rather than MAX_ALLOWED to determine
    compilation of code that requires 10.6.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49580 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index e3f3cd9..fa6bb56 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,12 @@
 2009-10-14  Kevin Ollivier  <kevino at theolliviers.com>
 
+        Mac build fix, use MIN_REQUIRED rather than MAX_ALLOWED to determine
+        compilation of code that requires 10.6.
+
+        * wtf/Platform.h:
+
+2009-10-14  Kevin Ollivier  <kevino at theolliviers.com>
+
         wx build fix. Set ENABLE_PLUGIN_PACKAGE_SIMPLE_HASH for plugins while we're still building stubs.
 
         * wtf/Platform.h:
diff --git a/JavaScriptCore/wtf/Platform.h b/JavaScriptCore/wtf/Platform.h
index 3315d96..5bde6aa 100644
--- a/JavaScriptCore/wtf/Platform.h
+++ b/JavaScriptCore/wtf/Platform.h
@@ -551,7 +551,7 @@
 #define HAVE_SYS_TIME_H 1
 #define HAVE_SYS_TIMEB_H 1
 
-#if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD) && !PLATFORM(IPHONE)
+#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6 && !PLATFORM(IPHONE)
 #define HAVE_MADV_FREE_REUSE 1
 #define HAVE_MADV_FREE 1
 #define HAVE_PTHREAD_SETNAME_NP 1

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list