diff options
author | David Robillard <d@drobilla.net> | 2008-10-19 21:36:38 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-10-19 21:36:38 +0000 |
commit | 5353b8c88e3c82812e41e3411d1085e0dd481a1b (patch) | |
tree | ac2aed59660324784d2d81da2b3b93f0a0e72888 /src/engine/wscript | |
parent | 7b2b8aaa0c810909922b662729774befc05e061e (diff) | |
download | ingen-5353b8c88e3c82812e41e3411d1085e0dd481a1b.tar.gz ingen-5353b8c88e3c82812e41e3411d1085e0dd481a1b.tar.bz2 ingen-5353b8c88e3c82812e41e3411d1085e0dd481a1b.zip |
Make ingen actually run again :)
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1688 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/wscript')
-rw-r--r-- | src/engine/wscript | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/engine/wscript b/src/engine/wscript index 6d62a976..1b677d3e 100644 --- a/src/engine/wscript +++ b/src/engine/wscript @@ -97,7 +97,6 @@ def build(bld): obj.name = 'libingen_engine_http' obj.target = 'ingen_engine_http' obj.inst_dir = 'lib/ingen' - obj.uselib_local = 'libingen_engine' autowaf.use_lib(bld, obj, core_libs + ' SOUP') if bld.env()['HAVE_LIBLO'] == 1: @@ -107,7 +106,6 @@ def build(bld): obj.name = 'libingen_engine_osc' obj.target = 'ingen_engine_osc' obj.inst_dir = 'lib/ingen' - obj.uselib_local = 'libingen_engine' autowaf.use_lib(bld, obj, core_libs + ' LIBLO') if bld.env()['HAVE_JACK'] == 1: @@ -117,7 +115,6 @@ def build(bld): obj.name = 'libingen_engine_jack' obj.target = 'ingen_engine_jack' obj.inst_dir = 'lib/ingen' - obj.uselib_local = 'libingen_engine' autowaf.use_lib(bld, obj, core_libs + ' JACK') # Lightweight ingen/lv2 wrapper @@ -132,7 +129,6 @@ def build(bld): obj.target = 'ingen.lv2/ingen_lv2' #obj.inst_dir = 'lib/lv2/ingen.lv2' obj.inst_var = 0 - obj.uselib_local = 'libingen_engine' core_libs = 'GLIBMM GTHREAD LV2CORE SLV2 RAUL REDLANDMM' autowaf.use_lib(bld, obj, core_libs) |