From 907b4a896f14b01d5260b820a6b304fe8d06bb1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1igo=20Mart=C3=ADnez?= Date: Sat, 27 Jan 2018 09:53:08 +0100 Subject: 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 --- config.h.meson | 3 --- meson.build | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 config.h.meson diff --git a/config.h.meson b/config.h.meson deleted file mode 100644 index 0363db6..0000000 --- a/config.h.meson +++ /dev/null @@ -1,3 +0,0 @@ -#mesondefine GETTEXT_PACKAGE -#mesondefine PACKAGE_VERSION -#mesondefine HAVE_ALSA diff --git a/meson.build b/meson.build index ff75f29..1ad4c1e 100644 --- a/meson.build +++ b/meson.build @@ -112,8 +112,7 @@ libgvc_dep = declare_dependency( dependencies: libgvc_deps ) -config = configure_file( - input: 'config.h.meson', +configure_file( output: 'config.h', configuration: cdata ) -- cgit v1.2.1