diff options
author | David Robillard <d@drobilla.net> | 2007-10-08 17:13:34 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-10-08 17:13:34 +0000 |
commit | ec9540a559c40046123a2ac4be83faf90b79fbb0 (patch) | |
tree | 214f8463bc6c9ef12ac715f65db41427152a7710 /src/libs/module | |
parent | bade64c9aca86225fa37950c17aabc02a3f4a041 (diff) | |
download | ingen-ec9540a559c40046123a2ac4be83faf90b79fbb0.tar.gz ingen-ec9540a559c40046123a2ac4be83faf90b79fbb0.tar.bz2 ingen-ec9540a559c40046123a2ac4be83faf90b79fbb0.zip |
Dynamically load Serialiser from serialisation module, make it actually work, etc.
git-svn-id: http://svn.drobilla.net/lad/ingen@850 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/module')
-rw-r--r-- | src/libs/module/Module.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/module/Module.cpp b/src/libs/module/Module.cpp index 8f445340..83064548 100644 --- a/src/libs/module/Module.cpp +++ b/src/libs/module/Module.cpp @@ -56,7 +56,7 @@ load_module(const string& name) string filename = Glib::Module::build_path(dir, name); if (Glib::file_test(filename, Glib::FILE_TEST_EXISTS)) { - module = new Glib::Module(filename, Glib::MODULE_BIND_LAZY|Glib::MODULE_BIND_LOCAL); + module = new Glib::Module(filename, Glib::MODULE_BIND_LAZY); if (*module) { return SharedPtr<Glib::Module>(module); |