From: Boyuan Yang Date: Fri, 18 Aug 2023 14:20:52 +0000 (-0400) Subject: Revert lookup of tbb library X-Git-Tag: archive/raspbian/7.1.1-1+rpi1^2^2^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7290b3e999a7c7cd5eaa357544ff6c1b706f8097;p=easyeffects.git Revert lookup of tbb library Reverts https://github.com/wwmm/easyeffects/commit/1a940f180c94eb7e7d3e061497b4a2693b4f533f . This may circumvent tbb lookup bug as reported in https://github.com/wwmm/easyeffects/issues/2527 . Forwarded: https://github.com/wwmm/easyeffects/issues/2527 Gbp-Pq: Name 0001-Revert-lookup-of-tbb-library.patch --- diff --git a/src/meson.build b/src/meson.build index 94f58e9..61096fd 100644 --- a/src/meson.build +++ b/src/meson.build @@ -128,6 +128,8 @@ cxx = meson.get_compiler('cpp') zita_convolver = cxx.find_library('zita-convolver', required: true) +tbb = cxx.find_library('tbb', required: true) + # always require these libraries if the respective meson option is enabled, so they can't be accidentally left out rnnoise = dependency('rnnoise', include_type: 'system', required: get_option('enable-rnnoise')) @@ -166,7 +168,7 @@ easyeffects_deps = [ dependency('fmt', version: '>=8.0.0', include_type: 'system'), dependency('gsl', include_type: 'system'), dependency('threads'), - dependency('tbb', include_type: 'system'), + tbb, zita_convolver, rnnoise, libportal,