From e5ff16ce3bc854b18239ec2ed18a11f02272066b Mon Sep 17 00:00:00 2001 From: "Tobias C. Berner" Date: Mon, 14 Aug 2023 08:02:55 +0200 Subject: [PATCH] audio/pulseaudio: fix typo in SPEEX option handling b1ecad53b0b32916e5db596b26334db8015e4299 introduced a small typo: MESONP_ENABLED vs MESON_ENABLED. This lead to the speex-option not being able to turned off. Reported by: mord0d@firemail.cc PR: 273100 --- audio/pulseaudio/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/pulseaudio/Makefile b/audio/pulseaudio/Makefile index 40c4b566a4cc6..d1a5078aeaa3a 100644 --- a/audio/pulseaudio/Makefile +++ b/audio/pulseaudio/Makefile @@ -64,7 +64,7 @@ JACK_LIB_DEPENDS= libjack.so:audio/jack SOXR_MESON_ENABLED= soxr SOXR_LIB_DEPENDS= libsoxr.so:audio/libsoxr SPEEX_DESC= Speex resampler and AEC support -SPEEX_MESONP_ENABLED= speex +SPEEX_MESON_ENABLED= speex SPEEX_LIB_DEPENDS= libspeexdsp.so:audio/speexdsp WEBRTC_AEC_DESC= WebRTC-based echo canceller WEBRTC_AEC_LIB_DEPENDS= libwebrtc_audio_processing.so:audio/webrtc-audio-processing0