From: Richard Kettlewell Date: Mon, 17 Sep 2007 07:42:14 +0000 (+0100) Subject: non-server builds want alsa too now X-Git-Tag: debian-1_5_99dev8~243^2~56 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/commitdiff_plain/d19ccd72a64c02afee15792e1d4757b9d3e2c599 non-server builds want alsa too now --- diff --git a/configure.ac b/configure.ac index 466f232..0384893 100644 --- a/configure.ac +++ b/configure.ac @@ -144,12 +144,12 @@ if test $want_server = yes; then AC_CHECK_LIB([ao], [ao_initialize], [AC_SUBST(LIBAO,[-lao])], [missing_libraries="$missing_libraries libao"]) - if test $want_alsa = yes; then - AC_CHECK_LIB([asound], [snd_pcm_open], - [AC_SUBST(LIBASOUND,[-lasound])], - [missing_libraries="$missing_libraries libasound"]) - AC_DEFINE([API_ALSA],[1],[define to use the ALSA API]) - fi +fi +if test $want_alsa = yes; then + AC_CHECK_LIB([asound], [snd_pcm_open], + [AC_SUBST(LIBASOUND,[-lasound])], + [missing_libraries="$missing_libraries libasound"]) + AC_DEFINE([API_ALSA],[1],[define to use the ALSA API]) fi if test $want_gtk = yes; then