mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
meson: remove config.h.meson
This commit is contained in:
parent
797ee730b0
commit
57c1339056
2 changed files with 1 additions and 17 deletions
|
@ -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
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue