Drop build-system support for macOS < 10.13 (require C++17)

This commit is contained in:
Robin Gareus 2024-10-18 22:33:52 +02:00
parent bd8525e5f1
commit 99906a2215
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
4 changed files with 38 additions and 104 deletions

View file

@ -25,10 +25,7 @@ def options(opt):
pass
def configure(conf):
if conf.env['build_target'] in ['panther', 'tiger', 'leopard'] or (Options.options.ppc and conf.env['build_target'] == 'snowleopard'):
conf.env.append_value ('CFLAGS', '-DCOREAUDIO105')
conf.env.append_value ('CXXFLAGS', '-DCOREAUDIO105')
conf.define ('COREAUDIO105', 1)
pass
def build(bld):
obj = bld(features = 'cxx cxxshlib')