diff options
author | Max Kellermann <max@duempel.org> | 2014-11-21 22:19:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-11-21 22:19:57 +0100 |
commit | b3f5b4932c360efef696f7db112766c63b1de389 (patch) | |
tree | d0532376ef025570b4d31bcd13e3b589b9dae5b4 /src/db/Registry.cxx | |
parent | b3f5f2f75f7c982659b17730a95db992ed64f413 (diff) | |
download | mpd-b3f5b4932c360efef696f7db112766c63b1de389.tar.gz mpd-b3f5b4932c360efef696f7db112766c63b1de389.tar.xz mpd-b3f5b4932c360efef696f7db112766c63b1de389.zip |
configure.ac: add macro MPD_ENABLE_AUTO_PKG
Simplify the definition of many build options.
Diffstat (limited to 'src/db/Registry.cxx')
-rw-r--r-- | src/db/Registry.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db/Registry.cxx b/src/db/Registry.cxx index 5681a9b82..a7d6dc05e 100644 --- a/src/db/Registry.cxx +++ b/src/db/Registry.cxx @@ -28,10 +28,10 @@ const DatabasePlugin *const database_plugins[] = { &simple_db_plugin, -#ifdef HAVE_LIBMPDCLIENT +#ifdef ENABLE_LIBMPDCLIENT &proxy_db_plugin, #endif -#ifdef HAVE_LIBUPNP +#ifdef ENABLE_UPNP &upnp_db_plugin, #endif nullptr |