From add46fd753e0d2fad56ff87b18610c91b29ac301 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Tue, 11 Jan 2022 17:32:04 +0200 Subject: [PATCH 37/38] Meson: Fix locale_charset() check syntax See osdn #43599 Signed-off-by: Marko Lindqvist --- meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 4a8be577d8..03ecc88a85 100644 --- a/meson.build +++ b/meson.build @@ -239,8 +239,7 @@ else bcrypt_lib_dep = [] endif -if c_compiler.has_header('libcharset.h', args: header_arg) and - c_compiler_has_function('locale_charset') +if c_compiler.has_header('libcharset.h', args: header_arg) and c_compiler.has_function('locale_charset') priv_conf_data.set('HAVE_LIBCHARSET', 1) endif -- 2.34.1