diff options
Diffstat (limited to 'src/InputRegistry.cxx')
-rw-r--r-- | src/InputRegistry.cxx | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/InputRegistry.cxx b/src/InputRegistry.cxx index aa6c06ed1..7be8b87da 100644 --- a/src/InputRegistry.cxx +++ b/src/InputRegistry.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2013 The Music Player Daemon Project + * Copyright (C) 2003-2014 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -22,6 +22,10 @@ #include "util/Macros.hxx" #include "input/FileInputPlugin.hxx" +#ifdef HAVE_ALSA +#include "input/AlsaInputPlugin.hxx" +#endif + #ifdef ENABLE_ARCHIVE #include "input/ArchiveInputPlugin.hxx" #endif @@ -34,6 +38,10 @@ #include "input/FfmpegInputPlugin.hxx" #endif +#ifdef ENABLE_SMBCLIENT +#include "input/SmbclientInputPlugin.hxx" +#endif + #ifdef ENABLE_MMS #include "input/MmsInputPlugin.hxx" #endif @@ -48,6 +56,9 @@ const InputPlugin *const input_plugins[] = { &input_plugin_file, +#ifdef HAVE_ALSA + &input_plugin_alsa, +#endif #ifdef ENABLE_ARCHIVE &input_plugin_archive, #endif @@ -57,6 +68,9 @@ const InputPlugin *const input_plugins[] = { #ifdef HAVE_FFMPEG &input_plugin_ffmpeg, #endif +#ifdef ENABLE_SMBCLIENT + &input_plugin_smbclient, +#endif #ifdef ENABLE_MMS &input_plugin_mms, #endif |