mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 17:39:47 +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>
34 lines
1.1 KiB
Meson
34 lines
1.1 KiB
Meson
resindvd_opt = get_option('resindvd').require(gpl_allowed, error_message: '''
|
|
Plugin resindvd 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.
|
|
''')
|
|
|
|
resindvd_sources = [
|
|
'gstmpegdemux.c',
|
|
'gstmpegdesc.c',
|
|
'gstpesfilter.c',
|
|
'plugin.c',
|
|
'resindvdbin.c',
|
|
'resindvdsrc.c',
|
|
'rsndec.c',
|
|
'rsninputselector.c',
|
|
'rsnparsetter.c',
|
|
]
|
|
|
|
dvdnav_dep = dependency('dvdnav', version : '>= 4.1.2', required : resindvd_opt)
|
|
dvdread_dep = dependency('dvdread', version : '>= 4.1.2', required : resindvd_opt)
|
|
|
|
if dvdnav_dep.found() and dvdread_dep.found()
|
|
gstresindvd = library('gstresindvd',
|
|
resindvd_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gstvideo_dep, gstpbutils_dep, gsttag_dep,
|
|
dvdnav_dep, dvdread_dep, gmodule_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstresindvd, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstresindvd]
|
|
endif
|