configure.ac: improve database dependency checks

Abort if --enable-libmpdclient or --enable-upnp are used with
--disable-database, instead of ignoring the mismatch silently.
This commit is contained in:
Max Kellermann
2014-10-24 23:43:21 +02:00
parent 6cf1acfb48
commit 30dd29e251
2 changed files with 15 additions and 2 deletions

9
m4/mpd_depends.m4 Normal file
View File

@@ -0,0 +1,9 @@
AC_DEFUN([MPD_DEPENDS], [
if test x$$2 = xno; then
if test x$$1 = xauto; then
$1=no
elif test x$$1 = xyes; then
AC_MSG_ERROR([$3])
fi
fi
])