meson: fix with-package-name option

https://bugzilla.gnome.org/show_bug.cgi?id=784082
This commit is contained in:
Tim-Philipp Müller 2017-06-26 09:55:49 +01:00
parent ff7b8fe032
commit 9df5f8ea8f

View file

@ -41,13 +41,14 @@ cdata.set_quoted('GST_LICENSE', 'LGPL')
gst_package_name = get_option('with-package-name') gst_package_name = get_option('with-package-name')
if gst_package_name == '' if gst_package_name == ''
if gst_version_nano == 0 if gst_version_nano == 0
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer RTSP Server Library source release') gst_package_name = 'GStreamer RTSP Server Library source release'
elif gst_version_nano == 1 elif gst_version_nano == 1
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer RTSP Server Library git') gst_package_name = 'GStreamer RTSP Server Library git'
else else
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer RTSP Server Library prerelease') gst_package_name = 'GStreamer RTSP Server Library prerelease'
endif endif
endif endif
cdata.set_quoted('GST_PACKAGE_NAME', gst_package_name)
cdata.set_quoted('GST_PACKAGE_ORIGIN', get_option('with-package-origin')) cdata.set_quoted('GST_PACKAGE_ORIGIN', get_option('with-package-origin'))
configure_file(output : 'config.h', configuration : cdata) configure_file(output : 'config.h', configuration : cdata)