Merge branch 'backport-1607-ios-frexpl-glib-2-64' into 'glib-2-64'

Backport !1607 “meson: Don't use gnulib for printf on iOS” to glib-2-64

See merge request GNOME/glib!1608
This commit is contained in:
Sebastian Dröge 2020-08-06 09:46:08 +00:00
commit 94ef46477c

View File

@ -834,6 +834,15 @@ if host_system == 'windows' and (cc.get_id() == 'msvc' or cc.get_id() == 'clang-
glib_conf.set('HAVE_C99_SNPRINTF', false)
glib_conf.set('HAVE_C99_VSNPRINTF', false)
glib_conf.set('HAVE_UNIX98_PRINTF', false)
elif not cc_can_run and host_system in ['ios', 'darwin']
# All these are true when compiling natively on macOS, so we should use good
# defaults when building for iOS and tvOS.
glib_conf.set('HAVE_C99_SNPRINTF', true)
glib_conf.set('HAVE_C99_VSNPRINTF', true)
glib_conf.set('HAVE_UNIX98_PRINTF', true)
have_good_vsnprintf = true
have_good_snprintf = true
have_good_printf = true
else
vsnprintf_c99_test_code = '''
#include <stdio.h>