make i18n build work ; add mackie dir back to build ; token work on amp for MIDI; don't try to subgroup route groups with MIDI (for now)

git-svn-id: svn://localhost/ardour2/branches/3.0@5412 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2009-07-22 13:51:16 +00:00
parent 272c1a40db
commit 3b7230552d
14 changed files with 488 additions and 354 deletions

11
wscript
View file

@ -29,6 +29,11 @@ children = [
]
i18n_children = [
'gtk2_ardour',
'libs/ardour'
]
# Version stuff
def fetch_svn_revision (path):
@ -386,6 +391,8 @@ def configure(conf):
autowaf.display_msg(conf, 'Samplerate', bool(conf.env['HAVE_SAMPLERATE']))
autowaf.display_msg(conf, 'Soundtouch', bool(conf.env['HAVE_SOUNDTOUCH']))
autowaf.display_msg(conf, 'Translation', opts.nls)
if opts.nls:
conf.define ('ENABLE_NLS', 1)
autowaf.display_msg(conf, 'System Libraries', opts.syslibs)
autowaf.display_msg(conf, 'Tranzport', opts.tranzport)
if opts.tranzport:
@ -411,6 +418,6 @@ def build(bld):
for i in children:
bld.add_subdirs(i)
def shutdown():
autowaf.shutdown()
def i18n(bld):
bld.recurse (i18n_children)