mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Build against local libAAF (0.6.0 is not yet released)
Revert once libAAF API is stable after libAAF 1.0
This commit is contained in:
parent
7150898eec
commit
b230c2eb28
2 changed files with 3 additions and 3 deletions
|
|
@ -542,7 +542,7 @@ def build(bld):
|
||||||
else:
|
else:
|
||||||
obj.uselib += ' GTKMM'
|
obj.uselib += ' GTKMM'
|
||||||
|
|
||||||
if bld.is_defined('USE_EXTERNAL_LIBS'):
|
if False and bld.is_defined('USE_EXTERNAL_LIBS'):
|
||||||
obj.uselib += ' LIBAAF'
|
obj.uselib += ' LIBAAF'
|
||||||
else:
|
else:
|
||||||
obj.use.extend (['libaaf'])
|
obj.use.extend (['libaaf'])
|
||||||
|
|
|
||||||
|
|
@ -37,11 +37,11 @@ def options(opt):
|
||||||
autowaf.set_options(opt)
|
autowaf.set_options(opt)
|
||||||
|
|
||||||
def configure(conf):
|
def configure(conf):
|
||||||
if conf.is_defined('USE_EXTERNAL_LIBS'):
|
if False and conf.is_defined('USE_EXTERNAL_LIBS'):
|
||||||
autowaf.check_pkg(conf, 'libaaf', uselib_store='LIBAAF', mandatory=True, atleast_version='0.6.0')
|
autowaf.check_pkg(conf, 'libaaf', uselib_store='LIBAAF', mandatory=True, atleast_version='0.6.0')
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
if bld.is_defined('USE_EXTERNAL_LIBS'):
|
if False and bld.is_defined('USE_EXTERNAL_LIBS'):
|
||||||
return
|
return
|
||||||
|
|
||||||
if bld.is_defined ('INTERNAL_SHARED_LIBS'):
|
if bld.is_defined ('INTERNAL_SHARED_LIBS'):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue