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:
Robin Gareus 2024-02-18 20:38:33 +01:00
parent 7150898eec
commit b230c2eb28
No known key found for this signature in database
GPG Key ID: A090BCE02CF57F04
2 changed files with 3 additions and 3 deletions

View File

@ -542,7 +542,7 @@ def build(bld):
else:
obj.uselib += ' GTKMM'
if bld.is_defined('USE_EXTERNAL_LIBS'):
if False and bld.is_defined('USE_EXTERNAL_LIBS'):
obj.uselib += ' LIBAAF'
else:
obj.use.extend (['libaaf'])

View File

@ -37,11 +37,11 @@ def options(opt):
autowaf.set_options(opt)
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')
def build(bld):
if bld.is_defined('USE_EXTERNAL_LIBS'):
if False and bld.is_defined('USE_EXTERNAL_LIBS'):
return
if bld.is_defined ('INTERNAL_SHARED_LIBS'):