summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript5
1 files changed, 0 insertions, 5 deletions
diff --git a/wscript b/wscript
index c1e368a8..38be6916 100644
--- a/wscript
+++ b/wscript
@@ -20,8 +20,6 @@ def options(opt):
help="Ingen data install directory [Default: PREFIX/share/ingen]")
opt.add_option('--module-dir', type='string', dest='moduledir',
help="Ingen module install directory [Default: PREFIX/lib/ingen]")
- opt.add_option('--no-ladspa', action='store_true', default=False, dest='no_ladspa',
- help="Do not build LADSPA support, even if ladspa.h is found")
opt.add_option('--no-osc', action='store_true', default=False, dest='no_osc',
help="Do not build OSC via liblo support, even if liblo exists")
opt.add_option('--no-http', action='store_true', default=False, dest='no_http',
@@ -61,8 +59,6 @@ def configure(conf):
if not Options.options.no_http:
autowaf.check_pkg(conf, 'libsoup-2.4', uselib_store='SOUP',
atleast_version='2.4.0', mandatory=False)
- if not Options.options.no_ladspa:
- autowaf.check_header(conf, 'ladspa.h', mandatory=False)
if not Options.options.no_osc:
autowaf.check_pkg(conf, 'liblo', uselib_store='LIBLO',
atleast_version='0.25', mandatory=False)
@@ -106,7 +102,6 @@ def configure(conf):
autowaf.display_msg(conf, "OSC", str(conf.env['HAVE_LIBLO'] == 1))
autowaf.display_msg(conf, "HTTP", str(conf.env['HAVE_SOUP'] == 1))
autowaf.display_msg(conf, "LV2", str(conf.env['HAVE_SLV2'] == 1))
- autowaf.display_msg(conf, "LADSPA", str(conf.env['HAVE_LADSPA_H'] == 1))
autowaf.display_msg(conf, "GUI", str(conf.env['INGEN_BUILD_GUI'] == 1))
print