From 5ef445e84f8ad45e08c603f1334e8e9550f8e3e0 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Tue, 28 Jun 2022 20:32:11 +0200 Subject: [PATCH] package/libsamplerate: use --{dis, en}able-alsa Commit 5b679d7806767206f2c7bd7ff69b412bebb504f8 forgot to set --{dis,en}able-alsa Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- package/libsamplerate/libsamplerate.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/libsamplerate/libsamplerate.mk b/package/libsamplerate/libsamplerate.mk index 146d57d15e..9d6b6a5ca5 100644 --- a/package/libsamplerate/libsamplerate.mk +++ b/package/libsamplerate/libsamplerate.mk @@ -15,6 +15,9 @@ LIBSAMPLERATE_CPE_ID_VENDOR = libsamplerate_project ifeq ($(BR2_PACKAGE_ALSA_LIB),y) LIBSAMPLERATE_DEPENDENCIES += alsa-lib +LIBSAMPLERATE_CONF_OPTS += --enable-alsa +else +LIBSAMPLERATE_CONF_OPTS += --disable-alsa endif ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)