2018-07-27 13:59:01 +00:00
|
|
|
if get_option('a52dec').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
|
|
|
a52_dep = cc.find_library('a52', required : get_option('a52dec'))
|
|
|
|
have_a52_h = cc.has_header_symbol('a52dec/a52.h', 'a52_init', prefix : '#include <stdint.h>')
|
|
|
|
if not have_a52_h and get_option('a52dec').enabled()
|
|
|
|
error('a52dec plugin enabled but a52.h not found')
|
|
|
|
endif
|
2016-08-12 15:55:34 +00:00
|
|
|
|
2018-07-27 13:59:01 +00:00
|
|
|
if a52_dep.found() and have_a52_h
|
2016-08-12 15:55:34 +00:00
|
|
|
a52dec = library('gsta52dec',
|
|
|
|
'gsta52dec.c',
|
|
|
|
c_args : ugly_args,
|
|
|
|
include_directories : [configinc],
|
|
|
|
dependencies : [gstaudio_dep, orc_dep, a52_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-04-24 18:06:20 +00:00
|
|
|
pkgconfig.generate(a52dec, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:47:37 +00:00
|
|
|
plugins += [a52dec]
|
2016-08-12 15:55:34 +00:00
|
|
|
endif
|