mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
meson: fix with-package-name option
https://bugzilla.gnome.org/show_bug.cgi?id=784082
This commit is contained in:
parent
c9c2902604
commit
3683a0753a
1 changed files with 4 additions and 3 deletions
|
@ -81,13 +81,14 @@ endif
|
|||
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')
|
||||
gst_package_name = 'GStreamer source release'
|
||||
elif gst_version_nano == 1
|
||||
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer git')
|
||||
gst_package_name = 'GStreamer git'
|
||||
else
|
||||
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer prerelease')
|
||||
gst_package_name = 'GStreamer prerelease'
|
||||
endif
|
||||
endif
|
||||
cdata.set_quoted('GST_PACKAGE_NAME', gst_package_name)
|
||||
cdata.set_quoted('GST_PACKAGE_ORIGIN', get_option('with-package-origin'))
|
||||
|
||||
# These are only needed/used by the ABI tests
|
||||
|
|
Loading…
Reference in a new issue