summaryrefslogtreecommitdiffstats
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/ingen_client.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/ingen_client.cpp b/src/client/ingen_client.cpp
index 9f644e4d..6fccc45f 100644
--- a/src/client/ingen_client.cpp
+++ b/src/client/ingen_client.cpp
@@ -50,9 +50,13 @@ new_http_interface(Ingen::Shared::World* world, const std::string& url)
struct IngenClientModule : public Ingen::Shared::Module {
void load(Ingen::Shared::World* world) {
+#ifdef HAVE_LIBLO
world->add_interface_factory("osc.udp", &new_osc_interface);
world->add_interface_factory("osc.tcp", &new_osc_interface);
+#endif
+#ifdef HAVE_SOUP
world->add_interface_factory("http", &new_http_interface);
+#endif
}
};