summaryrefslogtreecommitdiffstats
path: root/src/ingen/ingen.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-02-24 20:07:29 +0000
committerDavid Robillard <d@drobilla.net>2015-02-24 20:07:29 +0000
commitf69c75e637cc3c789a675d1811a2f632732bafc0 (patch)
treeb82b69f45d6c92ae3c7000cc465ee18bfa0bbb15 /src/ingen/ingen.cpp
parent9d7c1e971d51561c4bb28fa1064503e5f266908f (diff)
downloadingen-f69c75e637cc3c789a675d1811a2f632732bafc0.tar.gz
ingen-f69c75e637cc3c789a675d1811a2f632732bafc0.tar.bz2
ingen-f69c75e637cc3c789a675d1811a2f632732bafc0.zip
Remove crusty old internal bindings.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5608 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/ingen/ingen.cpp')
-rw-r--r--src/ingen/ingen.cpp16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/ingen/ingen.cpp b/src/ingen/ingen.cpp
index 3f68369c..a63b4196 100644
--- a/src/ingen/ingen.cpp
+++ b/src/ingen/ingen.cpp
@@ -36,9 +36,6 @@
#include "ingen/client/ThreadedSigClientInterface.hpp"
#include "ingen/runtime_paths.hpp"
#include "ingen/types.hpp"
-#ifdef WITH_BINDINGS
-#include "bindings/ingen_bindings.hpp"
-#endif
#ifdef HAVE_SOCKET
#include "ingen/client/SocketClient.hpp"
#endif
@@ -193,18 +190,7 @@ main(int argc, char** argv)
if (conf.option("gui").get<int32_t>()) {
world->run_module("gui");
- } else if (conf.option("run").is_valid()) {
- // Run a script
-#ifdef WITH_BINDINGS
- ingen_try(world->load_module("bindings"),
- "Unable to load bindings module");
-
- world->run("application/x-python", conf.option("run").ptr<char>());
-#else
- cerr << "This build of ingen does not support scripting." << endl;
-#endif
-
- } else if (world->engine() && !conf.option("gui").get<int32_t>()) {
+ } else if (world->engine()) {
// Run engine main loop until interrupt
while (world->engine()->main_iteration()) {
Glib::usleep(125000); // 1/8 second