X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=subprojects%2Fgst-rtsp-server%2Fmeson.build;h=5d0da9d675f1e39edbf24272d3b04524093c8365;hb=3e29ac35c4d6be56893969af19d8e21137160814;hp=f82e271e2fab8d1c21d701ed463fe0d708a8da31;hpb=9d9e59622f0531781a76e1d8ac96471cb14c6677;p=platform%2Fupstream%2Fgstreamer.git diff --git a/subprojects/gst-rtsp-server/meson.build b/subprojects/gst-rtsp-server/meson.build index f82e271..5d0da9d 100644 --- a/subprojects/gst-rtsp-server/meson.build +++ b/subprojects/gst-rtsp-server/meson.build @@ -1,6 +1,6 @@ project('gst-rtsp-server', 'c', - version : '1.21.0.1', - meson_version : '>= 0.60', + version : '1.21.2', + meson_version : '>= 0.62', default_options : ['warning_level=1', 'buildtype=debugoptimized']) gst_version = meson.project_version() @@ -42,6 +42,12 @@ if cc.has_link_argument('-Wl,-Bsymbolic-functions') add_project_link_arguments('-Wl,-Bsymbolic-functions', language : 'c') endif +# glib doesn't support unloading, which means that unloading and reloading +# any library that registers static types will fail +if cc.has_link_argument('-Wl,-z,nodelete') + add_project_link_arguments('-Wl,-z,nodelete', language: 'c') +endif + # Symbol visibility if cc.get_id() == 'msvc' export_define = '__declspec(dllexport) extern' @@ -126,7 +132,6 @@ warning_flags = [ '-Wmissing-include-dirs', '-Waddress', '-Wno-multichar', - '-Wdeclaration-after-statement', '-Wvla', '-Wpointer-arith', ] @@ -192,7 +197,7 @@ endif plugins = [] pkgconfig_subdirs = ['gstreamer-1.0'] static_build = get_option('default_library') == 'static' -libraries = [] +gst_libraries = [] subdir('gst') if not get_option('tests').disabled() @@ -213,3 +218,21 @@ if gst_version_nano == 0 endif configure_file(output: 'config.h', configuration: cdata) + +plugin_names = [] +gst_plugins = [] +foreach plugin: plugins + pkgconfig.generate(plugin, install_dir: plugins_pkgconfig_install_dir) + dep = declare_dependency(link_with: plugin, variables: {'full_path': plugin.full_path()}) + meson.override_dependency(plugin.name(), dep) + gst_plugins += [dep] + if plugin.name().startswith('gst') + plugin_names += [plugin.name().substring(3)] + else + plugin_names += [plugin.name()] + endif +endforeach + +summary({ + 'Plugins': plugin_names, +}, list_sep: ', ')