From 15ddbfd037695da919e736e8a005336d012155d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikl=C4=81vs=20Ko=C4=BCes=C5=86ikovs?= <89q1r14hd@relay.firefox.com> Date: Mon, 26 Jun 2023 17:07:04 +0300 Subject: [PATCH] spa/plugins/bluez5/meson: removed some unneeded redefines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As far as I can tell, the code in question was not doing anything there and was also breaking the new code elsewhere, so it was put on the chopping block. Don't mind the squirming tentacles. Signed-off-by: Niklāvs Koļesņikovs <89q1r14hd@relay.firefox.com> --- spa/plugins/bluez5/meson.build | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/spa/plugins/bluez5/meson.build b/spa/plugins/bluez5/meson.build index e6c52ccc5..80493cfe6 100644 --- a/spa/plugins/bluez5/meson.build +++ b/spa/plugins/bluez5/meson.build @@ -118,16 +118,14 @@ endif if ldac_dep.found() ldac_args = codec_args - ldac_dep = [ ldac_dep ] if ldac_abr_dep.found() ldac_args += [ '-DENABLE_LDAC_ABR' ] - ldac_dep += ldac_abr_dep endif bluez_codec_ldac = shared_library('spa-codec-bluez5-ldac', [ 'a2dp-codec-ldac.c', 'media-codecs.c' ], include_directories : [ configinc ], c_args : ldac_args, - dependencies : [ spa_dep, ldac_dep ], + dependencies : [ spa_dep, ldac_dep, ldac_abr_dep ], install : true, install_dir : spa_plugindir / 'bluez5') endif @@ -144,7 +142,6 @@ endif if get_option('bluez5-codec-opus').allowed() and opus_dep.found() opus_args = codec_args - opus_dep = [ opus_dep ] bluez_codec_opus = shared_library('spa-codec-bluez5-opus', [ 'a2dp-codec-opus.c', 'media-codecs.c' ], include_directories : [ configinc ],