From: Paul Brossier Date: Thu, 5 Nov 2009 16:45:50 +0000 (+0100) Subject: wscript: remove java stuff X-Git-Tag: 0.4.0-beta1~561 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=f82aa0915b4c2dae4e3d26f75c17a442f28c6eb2;p=aubio.git wscript: remove java stuff --- diff --git a/wscript b/wscript index 18f3fdcd..8b59dc8d 100644 --- a/wscript +++ b/wscript @@ -23,8 +23,6 @@ def set_options(opt): help='compile without jack support') opt.add_option('--disable-lash', action='store_true', default=False, help='compile without lash support') - opt.add_option('--enable-java', action='store_true', default=False, - help='compile with java support') opt.add_option('--with-target-platform', type='string', help='set target platform for cross-compilation', dest='target_platform') opt.tool_options('compiler_cc') @@ -100,11 +98,6 @@ def configure(conf): conf.check_python_version((2,4,2)) conf.check_python_headers() - # java - if (Options.options.enable_java == True): - conf.fatal('Java build not yet implemented') - conf.check_tool('java') - # check support for C99 __VA_ARGS__ macros check_c99_varargs = ''' #include @@ -134,8 +127,6 @@ def build(bld): if bld.env['SWIG']: if bld.env['PYTHON']: bld.add_subdirs('python/aubio python') - if bld.env['JAVA']: - pass # create the aubio.pc file for pkg-config aubiopc = bld.new_task_gen('subst')