build: Remove config.h template file

The `config.h` can be generated without any template.

This patch removes the template file and modifies the build file
to not make any use of it.

It also removes the variable which holds the generated configuration
file target, as it will not be necessary for any packages building
libgnome-volume-control.

https://bugzilla.gnome.org/show_bug.cgi?id=792948
This commit is contained in:
Iñigo Martínez 2018-01-27 09:53:08 +01:00
parent ef5d07fa21
commit 6a0ac9ba69
2 changed files with 1 additions and 5 deletions

View File

@ -1,3 +0,0 @@
#mesondefine GETTEXT_PACKAGE
#mesondefine PACKAGE_VERSION
#mesondefine HAVE_ALSA

View File

@ -128,8 +128,7 @@ libgvc_dep = declare_dependency(
dependencies: libgvc_deps
)
config = configure_file(
input: 'config.h.meson',
configure_file(
output: 'config.h',
configuration: cdata
)