diff options
author | Qball Cow <qball@qballcow.nl> | 2005-09-08 21:08:02 +0000 |
---|---|---|
committer | Qball Cow <qball@qballcow.nl> | 2005-09-08 21:08:02 +0000 |
commit | edcfbef90da5f3a6abf60559042d61d0f3d765d7 (patch) | |
tree | cd84b4a7b53e2ee90588a57bc581c34390b9dadd /configure.ac | |
parent | bc666a9fc6dbd25bc9fd8cfe20d46bab9582682b (diff) | |
download | mpd-edcfbef90da5f3a6abf60559042d61d0f3d765d7.tar.gz mpd-edcfbef90da5f3a6abf60559042d61d0f3d765d7.tar.xz mpd-edcfbef90da5f3a6abf60559042d61d0f3d765d7.zip |
Patch to make the configure flag for mpd-mad and mpd-libid3tag more logic (from ticho)
git-svn-id: https://svn.musicpd.org/mpd/trunk@3477 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 767e00044..6c65fe6f4 100644 --- a/configure.ac +++ b/configure.ac @@ -47,8 +47,9 @@ AC_ARG_ENABLE(audiofile,[ --disable-audiofile disable audiofile support, disabl AC_ARG_ENABLE(mod,[ --enable-mod enable MOD support],enable_mod=yes,) AC_ARG_ENABLE(mpc,[ --disable-mpc disable musepack (MPC) support],,enable_mpc=yes) AC_ARG_ENABLE(id3,[ --disable-id3 disable id3 support],,enable_id3=yes) -AC_ARG_ENABLE(mpd_mad,[ --enable-mpd-mad use mpd libmad],use_mpd_mad=yes,) -AC_ARG_ENABLE(mpd_id3tag,[ --enable-mpd-id3tag use mpd libid3tag],use_mpd_id3tag=yes,) + +AC_ARG_ENABLE(mpd_mad,[ --enable-mpd-mad use mpd libmad],[use_mpd_mad=$enableval],[use_mpd_mad=no]) +AC_ARG_ENABLE(mpd_id3tag,[ --enable-mpd-id3tag use mpd libid3tag],[use_mpd_id3tag=$enableval],[use_mpd_id3tag=no]) AC_ARG_WITH(tremor,[[ --with-tremor[=PFX] Use Tremor(vorbisidec) integer Ogg-Vorbis decoder (with optional prefix)]], use_tremor=yes; test x$withval != xyes && tremor_prefix="$withval",) AC_ARG_WITH(tremor-libraries,[ --with-tremor-libraries=DIR Directory where Tremor library is installed (optional)], tremor_libraries="$withval", tremor_libraries="") |