From bcae79a41e2ba2a0a6aa7f1c590151aa2ceae8e7 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 12 May 2025 15:44:03 +0200 Subject: [PATCH] [waf] drop audio unit on ios --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 2b410558..cefa5a79 100644 --- a/wscript +++ b/wscript @@ -277,8 +277,9 @@ def configure(ctx): SDKROOT = "%(DEVROOT)s/SDKs/%(SDKNAME)s.sdk" % locals() ctx.env.CFLAGS += ['-std=c99'] if ctx.options.enable_apple_audio != False and target_platform.startswith ('ios'): - ctx.define('HAVE_AUDIO_UNIT', 1) + #ctx.define('HAVE_AUDIO_UNIT', 1) #ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox'] + pass if target_platform == 'ios': ctx.env.CFLAGS += [ '-fembed-bitcode' ] ctx.env.CFLAGS += [ '-arch', 'arm64' ] -- 2.11.0