From d19ccd72a64c02afee15792e1d4757b9d3e2c599 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 17 Sep 2007 08:42:14 +0100 Subject: [PATCH] non-server builds want alsa too now Organization: Straylight/Edgeware From: Richard Kettlewell --- configure.ac | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 -- [mdw]