From ffdf4624323af943a2f3f7241fa87d97afc50460 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 9 May 2012 16:38:49 +0000 Subject: Remove old HTTP and OSC stuff. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4329 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index a335fab0..609131ca 100644 --- a/wscript +++ b/wscript @@ -29,10 +29,6 @@ def options(opt): opt.add_option('--no-jack-session', action='store_true', default=False, dest='no_jack_session', help="Do not build JACK session support") - 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', - help="Do not build HTTP via libsoup support, even if libsoup exists") opt.add_option('--no-socket', action='store_true', default=False, dest='no_socket', help="Do not build Socket interface") opt.add_option('--log-debug', action='store_true', default=False, dest='log_debug', @@ -45,9 +41,6 @@ def configure(conf): autowaf.configure(conf) conf.line_just = 48 - Options.options.no_http = True - Options.options.no_osc = True - autowaf.display_header('Ingen Configuration') autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.14.0', mandatory=True) @@ -78,12 +71,6 @@ def configure(conf): atleast_version='1.4.0', mandatory=False) autowaf.check_pkg(conf, 'ganv-1', uselib_store='GANV', atleast_version='1.0.0', mandatory=False) - 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_osc: - autowaf.check_pkg(conf, 'liblo', uselib_store='LIBLO', - atleast_version='0.25', mandatory=False) if not Options.options.no_socket: conf.check_cc(function_name='socket', header_name='sys/socket.h', @@ -128,8 +115,6 @@ def configure(conf): autowaf.display_msg(conf, "Jack", conf.is_defined('HAVE_JACK')) autowaf.display_msg(conf, "Jack session support", conf.is_defined('INGEN_JACK_SESSION')) - autowaf.display_msg(conf, "OSC", conf.is_defined('HAVE_LIBLO')) - autowaf.display_msg(conf, "HTTP", conf.is_defined('HAVE_SOUP')) autowaf.display_msg(conf, "SOCKET", conf.is_defined('HAVE_SOCKET')) autowaf.display_msg(conf, "LV2", conf.is_defined('HAVE_LILV')) autowaf.display_msg(conf, "GUI", str(conf.env['INGEN_BUILD_GUI'] == 1)) @@ -153,8 +138,6 @@ def build(bld): bld.recurse('src/serialisation') bld.recurse('src/server') bld.recurse('src/client') - bld.recurse('src/http') - bld.recurse('src/osc') bld.recurse('src/socket') if bld.is_defined('INGEN_BUILD_GUI'): -- cgit v1.2.1