wscript: remove unused defines for now
authorPaul Brossier <piem@piem.org>
Thu, 23 Mar 2017 17:01:48 +0000 (18:01 +0100)
committerPaul Brossier <piem@piem.org>
Thu, 23 Mar 2017 17:01:48 +0000 (18:01 +0100)
wscript

diff --git a/wscript b/wscript
index 823d908..137b3c4 100644 (file)
--- a/wscript
+++ b/wscript
@@ -122,13 +122,6 @@ def configure(ctx):
         target_platform = ctx.options.target_platform
     ctx.env['DEST_OS'] = target_platform
 
-    version_dict = get_version_info();
-    ctx.define('AUBIO_VERSION',VERSION)
-    ctx.define('AUBIO_MAJOR_VERSION', version_dict['AUBIO_MAJOR_VERSION'])
-    ctx.define('AUBIO_MINOR_VERSION', version_dict['AUBIO_MINOR_VERSION'])
-    ctx.define('AUBIO_PATCH_VERSION', version_dict['AUBIO_PATCH_VERSION'])
-    ctx.define('AUBIO_VERSION_STATUS', version_dict['AUBIO_VERSION_STATUS'])
-    
     if ctx.options.build_type == "debug":
         ctx.define('DEBUG', 1)
     else: