From 6c0434ec9cdcf974ffb24cb2b715fc697f213d4d Mon Sep 17 00:00:00 2001 From: Pauli Virtanen Date: Sat, 25 Mar 2023 21:33:48 +0200 Subject: [PATCH] spa: fix wrong meson check for BAP --- spa/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/meson.build b/spa/meson.build index 951eaed5c..ee7693970 100644 --- a/spa/meson.build +++ b/spa/meson.build @@ -80,7 +80,7 @@ if get_option('spa-plugins').allowed() summary({'Opus': opus_dep.found()}, bool_yn: true, section: 'Bluetooth audio codecs') lc3_dep = dependency('lc3', required : get_option('bluez5-codec-lc3')) summary({'LC3': lc3_dep.found()}, bool_yn: true, section: 'Bluetooth audio codecs') - cdata.set('HAVE_BLUETOOTH_BAP', get_option('bluez5-codec-lc3plus').allowed() and lc3plus_dep.found()) + cdata.set('HAVE_BLUETOOTH_BAP', get_option('bluez5-codec-lc3').allowed() and lc3_dep.found()) if get_option('bluez5-backend-hsp-native').allowed() or get_option('bluez5-backend-hfp-native').allowed() mm_dep = dependency('ModemManager', version : '>= 1.10.0', required : get_option('bluez5-backend-native-mm')) summary({'ModemManager': mm_dep.found()}, bool_yn: true, section: 'Bluetooth backends')