7737c17d52
Done with ad hoc scripting hacks processing unused imports found by pyflakes: for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Logs.* but unused' | cut -d: -f1 | while read f; do sed -i 's/^import waflib.Logs as Logs,/import/g' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Options.* but unused' | cut -d: -f1 | while read f; do sed -i 's/import waflib.Options as Options, /import /g' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Options.* but unused' | cut -d: -f1 | while read f; do sed -i 's/^from waflib import Options,/from waflib import/g' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep ' imported but unused$' | sed "s/^\([^:]*\):[0-9]*:[0-9]* '\(.*\)'.*/\1 \2/g" | while read f lib; do sed -i "/^import $lib$/d" $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Options.* but unused' | cut -d: -f1 | while read f; do sed -i '/from waflib import Options$/d' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.TaskGen.* but unused' | cut -d: -f1 | while read f; do sed -i '/from waflib import TaskGen$/d' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Task.Task.* but unused' | cut -d: -f1 | while read f; do sed -i '/^from waflib.Task import Task$/d' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Tools.winres.* but unused' | cut -d: -f1 | while read f; do sed -i '/^from waflib.Tools import winres$/d' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Utils.* but unused' | cut -d: -f1 | while read f; do sed -i '/^import waflib.Utils as Utils$/d' $f; done
46 lines
1.5 KiB
Python
46 lines
1.5 KiB
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
from waflib import Options
|
|
import os
|
|
|
|
I18N_PACKAGE = 'coreaudio-backend'
|
|
|
|
# Mandatory variables
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def options(opt):
|
|
autowaf.set_options(opt)
|
|
|
|
def configure(conf):
|
|
if Options.options.ppc:
|
|
conf.env['build_arch'] = "ppc"
|
|
|
|
def build(bld):
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
obj.source = [ 'coreaudio_backend.cc',
|
|
'coreaudio_pcmio.cc',
|
|
'coremidi_io.cc'
|
|
]
|
|
obj.includes = ['.']
|
|
obj.name = 'coreaudio_backend'
|
|
obj.target = 'coreaudio_backend'
|
|
obj.use = 'libardour libpbd'
|
|
obj.uselib = 'GLIBMM XML OSX'
|
|
obj.framework = [ 'CoreAudio', 'AudioToolbox', 'CoreServices' ]
|
|
if bld.env['build_target'] not in [ 'lion', 'el_capitan' ] and (not bld.env['build_arch'] == "ppc"):
|
|
obj.framework += [ 'CoreMidi' ]
|
|
else:
|
|
obj.framework += [ 'CoreMIDI' ]
|
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'backends')
|
|
obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"',
|
|
'ARDOURBACKEND_DLL_EXPORTS'
|
|
]
|
|
|
|
# use new coreaudio API (the old one was deprecated in 10.6, yet still works)
|
|
# only use with OSX intel 10.6 or later, but for all OSX/PPC (<= 10.6)
|
|
if not bld.env['build_target'] in ['panther', 'tiger', 'leopard']:
|
|
if not (bld.env['build_target'] == 'snowleopard' and bld.env['build_arch'] == "ppc"):
|
|
obj.defines += ['COREAUDIO_108']
|