diff options
author | Max Kellermann <max@duempel.org> | 2013-04-17 00:40:27 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-04-17 00:40:27 +0200 |
commit | 7d5d95ad53d15df0b42cef9a5230e46b8de40a22 (patch) | |
tree | 6233f8e179002c47c361c69d17308dafde3244fe | |
parent | 5dd728d80236c795b86916be3a0b4ad3bbf29a60 (diff) | |
download | mpd-7d5d95ad53d15df0b42cef9a5230e46b8de40a22.tar.gz mpd-7d5d95ad53d15df0b42cef9a5230e46b8de40a22.tar.xz mpd-7d5d95ad53d15df0b42cef9a5230e46b8de40a22.zip |
configure.ac: fix hidden syntax errorv0.17.x
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index de0d90a4e..8cc36302f 100644 --- a/configure.ac +++ b/configure.ac @@ -1453,7 +1453,7 @@ if test x$enable_fifo = xno && test x$enable_httpd_output = xno && test x$enable_jack = xno && - test x$enable_mvp = xno; then + test x$enable_mvp = xno && test x$enable_openal = xno && test x$enable_oss = xno && test x$enable_osx = xno && @@ -1462,7 +1462,7 @@ if test x$enable_recorder_output = xno && test x$enable_shout = xno && test x$enable_solaris_output = xno && - test x$enable_winmm_output = xno && + test x$enable_winmm_output = xno; then AC_MSG_ERROR([No Audio Output types configured!]) fi |