[gtk-osx: 42/48] Minimum MacOS Version now 10.9



commit 7565126e0d695c02d4d9258ccd39aa70e9049ac1
Author: John Ralls <jralls ceridwen us>
Date:   Tue May 7 12:14:25 2019 -0700

    Minimum MacOS Version now 10.9
    
    Because that's the earliest with C++11 support and CMake 3.12 requires it.

 jhbuildrc-gtk-osx | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/jhbuildrc-gtk-osx b/jhbuildrc-gtk-osx
index 3be1ddb..13f8a01 100644
--- a/jhbuildrc-gtk-osx
+++ b/jhbuildrc-gtk-osx
@@ -27,7 +27,7 @@ import re
 #some variables we'll need defined later
 _default_arch = ""
 _osx_version = 0.0
-_target = '10.8'
+_target = '10.9'
 
 def _popen(cmd_arg):
     from subprocess import Popen, PIPE
@@ -228,7 +228,7 @@ osx_ver()
 #
 # This is the workhorse of the setup. Call this function from
 # .jhbuildrc-custom to configure compile and link flags. Optionally
-# specify a minimum MacOS version (10.6, 10.7, 10.8, etc.) and a list
+# specify a minimum MacOS version (10.9, 10.10, 10.10, etc.) and a list
 # of architectures.
 #
 # The sdk_version does nothing, as since Xcode 5 it is preferred to
@@ -419,8 +419,8 @@ _gtk_osx_default_build = ""
 
 #print "Default Architecture %s\n" % _default_arch
 
-if _osx_version < 8.0:
-    print "Error: Mac OS X 10.8 or newer is required, exiting."
+if _osx_version < 9.0:
+    print "Error: Mac OS X 10.9 or newer is required, exiting."
     raise SystemExit
 
 ###### Import Customizations ######


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]