[Summary] Removing redundant trx key and renamed trx to tracks

[git-p4: depot-paths = "//Abdaw/dev_main/tracks/": change = 452271]
This commit is contained in:
Grygorii Zharun 2014-04-10 13:57:49 -05:00
parent 80af8c5633
commit 3fc87a360c
6 changed files with 325 additions and 710 deletions

View file

@ -430,8 +430,6 @@ def options(opt):
autowaf.set_options(opt, debug_by_default=True)
opt.add_option('--program-name', type='string', action='store', default='Ardour', dest='program_name',
help='The user-visible name of the program being built')
opt.add_option ('--trx', action='store_true', default=True, dest='trx_build',
help='Whether to build for TRX')
opt.add_option('--arch', type='string', action='store', dest='arch',
help='Architecture-specific compiler flags')
opt.add_option('--backtrace', action='store_true', default=True, dest='backtrace',
@ -581,9 +579,6 @@ def configure(conf):
conf.env.append_value ('CXXFLAGS', '-DNO_PLUGIN_STATE')
conf.define ('NO_PLUGIN_STATE', 1)
if Options.options.trx_build:
conf.define ('TRX_BUILD', 1)
if Options.options.lv2dir:
conf.env['LV2DIR'] = Options.options.lv2dir
else: