From 406452f019f097bf52d8db529eabe8dd2d0e977a Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Fri, 1 Nov 2013 19:26:01 +0100 Subject: UPnP database plugin [mk: renamed source files, applied coding style, reduced bloat, using MPD's threading library, using MPD's error reporting and logging library and refactoring, fixed lots of bugs] --- src/DatabaseRegistry.cxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/DatabaseRegistry.cxx') diff --git a/src/DatabaseRegistry.cxx b/src/DatabaseRegistry.cxx index 4ce4a62cb..6937d51c1 100644 --- a/src/DatabaseRegistry.cxx +++ b/src/DatabaseRegistry.cxx @@ -21,6 +21,7 @@ #include "DatabaseRegistry.hxx" #include "db/SimpleDatabasePlugin.hxx" #include "db/ProxyDatabasePlugin.hxx" +#include "db/UpnpDatabasePlugin.hxx" #include @@ -28,6 +29,9 @@ const DatabasePlugin *const database_plugins[] = { &simple_db_plugin, #ifdef HAVE_LIBMPDCLIENT &proxy_db_plugin, +#endif +#ifdef HAVE_LIBUPNP + &upnp_db_plugin, #endif nullptr }; -- cgit v1.2.3