meson: remove config.h.meson

This commit is contained in:
Tim-Philipp Müller 2017-06-09 21:37:48 +01:00
parent 797ee730b0
commit 57c1339056
2 changed files with 1 additions and 17 deletions

View file

@ -1,13 +0,0 @@
#mesondefine VERSION
#mesondefine PACKAGE
#mesondefine PACKAGE_VERSION
#mesondefine PACKAGE_BUGREPORT
#mesondefine PACKAGE_NAME
#mesondefine GETTEXT_PACKAGE
#mesondefine GST_API_VERSION
#mesondefine GST_PACKAGE_NAME
#mesondefine GST_PACKAGE_ORIGIN
#mesondefine GST_LICENSE
#mesondefine LIBDIR
#mesondefine HAVE_GST_VALIDATE

View file

@ -47,7 +47,6 @@ cdata.set('PACKAGE_NAME', '"GStreamer Editing Services"')
cdata.set('GST_PACKAGE_NAME', '"GStreamer Editing Services"')
cdata.set('GST_PACKAGE_ORIGIN', '"Unknown package origin"')
cdata.set('GST_LICENSE', '"LGPL"')
cdata.set('LIBDIR', '"@0@"'.format(get_option('libdir')))
# Mandatory GST deps
gst_dep = dependency('gstreamer-' + apiversion, version : gst_req,
@ -81,9 +80,7 @@ if gstvalidate_dep.found()
cdata.set('HAVE_GST_VALIDATE', 1)
endif
configure_file(input : 'config.h.meson',
output : 'config.h',
configuration : cdata)
configure_file(output : 'config.h', configuration : cdata)
gir = find_program('g-ir-scanner', required : false)