wscript: remove java stuff
authorPaul Brossier <piem@piem.org>
Thu, 5 Nov 2009 16:45:50 +0000 (17:45 +0100)
committerPaul Brossier <piem@piem.org>
Thu, 5 Nov 2009 16:45:50 +0000 (17:45 +0100)
wscript

diff --git a/wscript b/wscript
index 18f3fdcde142781713f948b136f382dc58275486..8b59dc8ddf76ba8f71156768af75cf954a396605 100644 (file)
--- 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 <stdio.h>
@@ -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')