mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 05:26:23 +00:00
meson: add options to set package name and origin
https://bugzilla.gnome.org/show_bug.cgi?id=782172
This commit is contained in:
parent
3325ebb616
commit
4341bd0ba3
2 changed files with 17 additions and 2 deletions
15
meson.build
15
meson.build
|
@ -60,8 +60,6 @@ cdata.set('LIBDIR', '"@0@/@1@"'.format(prefix, get_option('libdir')))
|
|||
cdata.set('GST_API_VERSION', '"1.0"')
|
||||
cdata.set('GETTEXT_PACKAGE', '"gstreamer-1.0"')
|
||||
cdata.set('GST_LICENSE', '"LGPL"')
|
||||
cdata.set('GST_PACKAGE_ORIGIN', '"Unknown package origin"')
|
||||
cdata.set('GST_PACKAGE_NAME', '"GStreamer source release"')
|
||||
cdata.set('PACKAGE', '"gstreamer"')
|
||||
cdata.set('PACKAGE_NAME', '"GStreamer"')
|
||||
cdata.set('PACKAGE_STRING', '"GStreamer @0@"'.format(gst_version))
|
||||
|
@ -83,6 +81,19 @@ else
|
|||
cdata.set('GST_LEVEL_DEFAULT', 'GST_LEVEL_NONE')
|
||||
endif
|
||||
|
||||
# GStreamer package name and origin url
|
||||
gst_package_name = get_option('with-package-name')
|
||||
if gst_package_name == ''
|
||||
if gst_version_nano == 0
|
||||
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer source release')
|
||||
elif gst_version_nano == 1
|
||||
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer git')
|
||||
else
|
||||
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer prerelease')
|
||||
endif
|
||||
endif
|
||||
cdata.set_quoted('GST_PACKAGE_ORIGIN', get_option('with-package-origin'))
|
||||
|
||||
# These are only needed/used by the ABI tests
|
||||
host_defines = [
|
||||
[ 'x86', 'HAVE_CPU_I386' ],
|
||||
|
|
|
@ -11,6 +11,10 @@ option('disable_introspection',
|
|||
option('disable_libunwind',
|
||||
type : 'boolean', value : false,
|
||||
description : 'Whether to disable the usage of libunwind (to generate backtraces)')
|
||||
option('with-package-name', type : 'string',
|
||||
description : 'package name to use in plugins')
|
||||
option('with-package-origin', type : 'string', value : 'Unknown package origin',
|
||||
description : 'package origin URL to use in plugins')
|
||||
option('with-ptp-helper-setuid-user', type : 'string',
|
||||
description : 'User to switch to when installing gst-ptp-helper setuid root')
|
||||
option('with-ptp-helper-setuid-group', type : 'string',
|
||||
|
|
Loading…
Reference in a new issue