Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/macx
diff options
context:
space:
mode:
authorDavide Beatrici <davidebeatrici@gmail.com>2019-10-10 00:28:23 +0300
committerDavide Beatrici <davidebeatrici@gmail.com>2019-10-10 00:35:41 +0300
commit9ab5fe97b62b374e7985df72fc3087facec753b8 (patch)
tree8bb43df8ffcf43117fef42da927c9b4493a3ac6c /macx
parent523d40c2b60bb4b0851b26169447f1e8df6625f8 (diff)
Set target macOS version to 10.9
"libstdc++" was deprecated with Xcode 8 and is not supported in Xcode 10. The new library is "libc++", available with macOS 10.9+. https://developer.apple.com/documentation/xcode_release_notes/xcode_10_release_notes
Diffstat (limited to 'macx')
-rwxr-xr-xmacx/scripts/osxdist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/macx/scripts/osxdist.py b/macx/scripts/osxdist.py
index 9587e7f40..3f225ab78 100755
--- a/macx/scripts/osxdist.py
+++ b/macx/scripts/osxdist.py
@@ -298,7 +298,7 @@ def package_client():
if not options.universal:
if options.compat_warning:
a.add_compat_warning()
- a.set_min_macosx_version('10.6.0')
+ a.set_min_macosx_version('10.9.0')
else:
a.set_min_macosx_version('10.4.8')
a.done()