From 39dc112aa81a9e658fa00e1fc88ed3f712b4687a Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 19 Jul 2013 23:21:28 +0200 Subject: [PATCH 22/23] configure: make alsa a configurable option Allows disabling alsa support at configure time. Upstream-Status: Pending Signed-off-by: Martin Jansa --- configure | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configure b/configure index 290b9ac..5e9bfd4 100755 --- a/configure +++ b/configure @@ -2046,6 +2046,13 @@ while [ "$#" -gt 0 ]; do UNKNOWN_OPT=yes fi ;; + alsa) + if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then + CFG_ALSA="$VAL" + else + UNKNOWN_OPT=yes + fi + ;; gtkstyle) if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then CFG_QGTKSTYLE="$VAL" -- 1.8.3.2