From eb93499e26486957a93b2f8f82853d3de9769cce 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 595c9d9..864967c 100755 --- a/configure +++ b/configure @@ -1966,6 +1966,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