diff options
author | Avuton Olrich <avuton@gmail.com> | 2005-03-16 23:30:18 +0000 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2005-03-16 23:30:18 +0000 |
commit | 70865740fb3f5557ae943ef3571cfc96573f032e (patch) | |
tree | 9fa4a2ec46b6affcff672b2e636218a8e94c709d /configure.ac | |
parent | 65f6e33b606e8af5ff336d237e5b31ac0c57c7f4 (diff) | |
download | mpd-70865740fb3f5557ae943ef3571cfc96573f032e.tar.gz mpd-70865740fb3f5557ae943ef3571cfc96573f032e.tar.xz mpd-70865740fb3f5557ae943ef3571cfc96573f032e.zip |
Update the configure.ac to make sure it can't be compiled without an output target.
git-svn-id: https://svn.musicpd.org/mpd/trunk@3092 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c405448a1..e28457aeb 100644 --- a/configure.ac +++ b/configure.ac @@ -126,7 +126,11 @@ if test x$enable_oss = xyes; then AC_CHECK_HEADER(sys/soundcard.h,[enable_oss=yes;AC_DEFINE(HAVE_OSS,1,[Define to enable OSS])],[AC_MSG_WARN(Soundcard headers not found -- disabling OSS support);enable_oss=no]) fi -if test x$enable_ao = xno && test x$enable_oss = xno && test x$enable_shout = xno && test x$enable_alsa = xno; then +if test x$enable_ao = xno && + test x$enable_oss = xno && + test x$enable_shout = xno && + test x$enable_alsa = xno && + test x$enable_osx = xno; then AC_MSG_ERROR("Cannot compile without an output target") fi |