aboutsummaryrefslogtreecommitdiffstats
path: root/src/InputRegistry.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/InputRegistry.cxx')
-rw-r--r--src/InputRegistry.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/InputRegistry.cxx b/src/InputRegistry.cxx
index aa6c06ed1..ef4acb237 100644
--- a/src/InputRegistry.cxx
+++ b/src/InputRegistry.cxx
@@ -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
@@ -48,6 +52,9 @@
const InputPlugin *const input_plugins[] = {
&input_plugin_file,
+#ifdef HAVE_ALSA
+ &input_plugin_alsa,
+#endif
#ifdef ENABLE_ARCHIVE
&input_plugin_archive,
#endif