From 9c4e72112a7eeb32731a5a4e1c5444433b0fcf9a Mon Sep 17 00:00:00 2001 From: Arnaud Rebillout Date: Fri, 19 Oct 2018 16:38:38 +0700 Subject: [PATCH] meson: Also set HAVE_ALSA when alsa is enabled Just following the configure file. Signed-off-by: Arnaud Rebillout --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 45eca206e..5b6aa1137 100644 --- a/meson.build +++ b/meson.build @@ -239,6 +239,7 @@ endif alsa_dep = dependency('alsa', version : '>= 1.0.24', required : get_option('alsa')) if alsa_dep.found() + cdata.set('HAVE_ALSA', 1) cdata.set('HAVE_ALSA_UCM', 1) endif -- 2.34.1