Bug 1269790 - Bump default MacOS target to 10.7. r?gps draft
authorRalph Giles <giles@mozilla.com>
Tue, 03 May 2016 09:58:15 -0700
changeset 362965 4ef8ee7f945ae397ac46ca7f420b4f28f6408f06
parent 362943 0a25833062a880f369e6f9f622413a94cc671bf4
child 519913 1e77599d561aab4bb81e4cfa75ac96c0698ecf55
push id17072
push userbmo:giles@thaumas.net
push dateTue, 03 May 2016 17:00:45 +0000
reviewersgps
bugs1269790
milestone49.0a1
Bug 1269790 - Bump default MacOS target to 10.7. r?gps We no longer support MacOS X versions 10.6-10.8. Bumping the default MACOSX_DEPLOYMENT_TARGET to 10.7 lets us start landing changes which are incompatible with that SDK. Moving it to 10.9 must wait until our test infrastructure is reconfigured to run on later vesions. MozReview-Commit-ID: B0CcWVOnnv3
build/moz.configure/toolchain.configure
--- a/build/moz.configure/toolchain.configure
+++ b/build/moz.configure/toolchain.configure
@@ -70,17 +70,17 @@ def android_ndk_include(compile_env, bui
 include(android_ndk_include)
 
 
 # MacOS deployment target version
 # ==============================================================
 # This needs to happen before any compilation test is done.
 
 option('--enable-macos-target', env='MACOSX_DEPLOYMENT_TARGET', nargs=1,
-       default='10.6', help='Set the minimum MacOS version needed at runtime')
+       default='10.7', help='Set the minimum MacOS version needed at runtime')
 
 @depends('--enable-macos-target', target)
 @imports(_from='os', _import='environ')
 def macos_target(value, target):
     if value and target.os == 'OSX':
         # Ensure every compiler process we spawn uses this value.
         environ['MACOSX_DEPLOYMENT_TARGET'] = value[0]
         return value[0]