From c4ef265351328fd28fd12d52c0d9cc95ea4cd8d5 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Tue, 2 Nov 2021 13:19:00 +0100 Subject: [PATCH] build: Rename default include header file Rename config-host.h to config.h as it contains also the defines for the ccan library, e.g. HAVE_BIG_ENDIAN. Signed-off-by: Daniel Wagner --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index a701b256..52982673 100644 --- a/meson.build +++ b/meson.build @@ -110,7 +110,7 @@ conf.set10( ) configure_file( - output: 'config-host.h', + output: 'config.h', configuration: conf ) @@ -127,7 +127,7 @@ configure_file( ################################################################################ add_project_arguments(['-fomit-frame-pointer', '-D_GNU_SOURCE', - '-include', 'config-host.h'], language : 'c') + '-include', 'config.h'], language : 'c') incdir = include_directories(['ccan']) ################################################################################ -- 2.50.1