mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
d4bdbeaa0d
Require explicit opt-in to build plugins with (A)GPL dependencies. Keep ugly/bad options on 'auto' for now so cerbero doesn't fail. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1084>
19 lines
704 B
Meson
19 lines
704 B
Meson
cdio_opt = get_option('cdio').require(gpl_allowed, error_message: '''
|
|
Plugin cdio explicitly required via options but GPL-licensed plugins disabled via options.
|
|
Pass option -Dgpl=enabled to Meson to allow GPL-licensed plugins to be built.
|
|
''')
|
|
|
|
cdio_dep = dependency('libcdio', version : '>= 0.76', required : cdio_opt)
|
|
|
|
if cdio_dep.found()
|
|
cdio = library('gstcdio',
|
|
['gstcdio.c', 'gstcdiocddasrc.c'],
|
|
c_args : ugly_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gstaudio_dep, gsttag_dep, cdio_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(cdio, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [cdio]
|
|
endif
|