From: Thomas Weißschuh Date: Sun, 7 Apr 2024 09:15:29 +0000 (+0200) Subject: meson: use signed chars X-Git-Tag: v2.42-start~447 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1a76c226b276f49c6a7e74082a23f06f5b99966;p=thirdparty%2Futil-linux.git meson: use signed chars This matches what the autotools build is doing. Also see https://github.com/util-linux/util-linux/pull/2768 . Signed-off-by: Thomas Weißschuh --- diff --git a/meson.build b/meson.build index 688ea9120..0e386dd1a 100644 --- a/meson.build +++ b/meson.build @@ -39,7 +39,7 @@ bash_completion = dependency('bash-completion', required : get_option('build-bas vendordir = get_option('vendordir') -add_project_arguments('-D_GNU_SOURCE', language : 'c') +add_project_arguments('-D_GNU_SOURCE', '-fsigned-char', language : 'c') cc = meson.get_compiler('c')