diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-03-30 21:18:03 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-03-30 21:18:03 +0000 |
commit | 9e382536dc74476e91966442a639cf437b2c22c0 (patch) | |
tree | e4220afd1e4430af90d9d84be9ae94ef2dc50bf3 | |
parent | 6266e3dcdfb7809a46cf1dd560afbb8bfc8fb9e6 (diff) | |
download | mpd-9e382536dc74476e91966442a639cf437b2c22c0.tar.gz mpd-9e382536dc74476e91966442a639cf437b2c22c0.tar.xz mpd-9e382536dc74476e91966442a639cf437b2c22c0.zip |
allow to disable alsa
git-svn-id: https://svn.musicpd.org/mpd/trunk@551 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | configure.ac | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index 79b281932..3845d254c 100644 --- a/configure.ac +++ b/configure.ac @@ -29,6 +29,7 @@ MPD_LIBS="" AC_ARG_ENABLE(iconv,[ --disable-iconv disable iconv support],,enable_iconv=yes) AC_ARG_ENABLE(ipv6,[ --disable-ipv6 disable IPv6 support],,enable_ipv6=yes) +AC_ARG_ENABLE(alsa,[ --disable-alsa disable Alsa Mixer support],,enable_alsa=yes) AC_ARG_ENABLE(ogg,[ --disable-ogg disable ogg support],,enable_ogg=yes) AC_ARG_ENABLE(flac,[ --disable-flac disable flac support],,enable_flac=yes) AC_ARG_ENABLE(mp3,[ --disable-mp3 disable mp3 support],,enable_mp3=yes) @@ -93,20 +94,23 @@ fi XIPH_PATH_AO(MPD_LIBS="$MPD_LIBS $AO_LIBS" MPD_CFLAGS="$MPD_CFLAGS $AO_CFLAGS",AC_MSG_ERROR(Must have libao installed!!!)) AC_CHECK_HEADER(sys/soundcard.h,enable_oss=yes,[AC_MSG_WARN(Soundcard headers not found -- disabling OSS mixer);enable_oss=no;AC_DEFINE(NO_OSS_MIXER,1,[Define to disable OSS mixer support])]) -AC_MSG_CHECKING(for alsa) -AC_EGREP_CPP([AP_maGiC_VALUE], -[ +if test x$enable_alsa = xyes; then + AC_MSG_CHECKING(for alsa) + AC_EGREP_CPP([AP_maGiC_VALUE], + [ #include <alsa/asoundlib.h> #if defined(SND_LIB_MAJOR) && defined(SND_LIB_MINOR) #if SND_LIB_MAJOR>0 || (SND_LIB_MAJOR==0 && SND_LIB_MINOR>=6) AP_maGiC_VALUE #endif #endif -], -enable_alsa=yes -AC_MSG_RESULT([yes]), -AC_MSG_RESULT([no]) -) + ], + enable_alsa=yes + AC_MSG_RESULT([yes]), + enable_alsa=no + AC_MSG_RESULT([no]) + ) +fi if test x$enable_alsa = xyes; then AC_CHECK_LIB(asound,main,[MPD_LIBS="$MPD_LIBS -lasound";AC_DEFINE(HAVE_ALSA,1,[Define if alsa support is present])],enable_alsa=no) |