[glib: 2/8] build: Define GLIB_USING_SYSTEM_PRINTF properly



commit 7bc3edd1e5b980e73173c1d12ba7f3ba89311d03
Author: Philip Withnall <withnall endlessm com>
Date:   Wed Aug 29 11:58:51 2018 +0100

    build: Define GLIB_USING_SYSTEM_PRINTF properly
    
    Previously it was hard-coded to true, rather than being based on the
    calculations actually made by meson.build.
    
    Signed-off-by: Philip Withnall <withnall endlessm com>
    
    https://gitlab.gnome.org/GNOME/glib/issues/1313

 meson.build | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/meson.build b/meson.build
index 770ddcc4d..777b95f4c 100644
--- a/meson.build
+++ b/meson.build
@@ -894,6 +894,9 @@ else
   glib_conf.set('HAVE_VASPRINTF', 1)
 endif
 
+glibconfig_conf.set('GLIB_USING_SYSTEM_PRINTF',
+                    have_good_vsnprintf and have_good_snprintf and have_good_printf)
+
 # Check whether the printf() family supports Unix98 %n$ positional parameters
 # AC_FUNC_PRINTF_UNIX98
 # Nothing uses HAVE_UNIX98_PRINTF
@@ -1522,8 +1525,6 @@ foreach d : inet_defines
   glibconfig_conf.set(d[1], val)
 endforeach
 
-glibconfig_conf.set('GLIB_USING_SYSTEM_PRINTF', true) # FIXME!
-
 # We need a more robust approach here...
 host_cpu_family = host_machine.cpu_family()
 if host_cpu_family == 'x86' or host_cpu_family == 'x86_64' or host_cpu_family == 's390' or host_cpu_family 
== 's390x' or host_cpu_family.startswith('arm') or host_cpu_family.startswith('crisv32') or 
host_cpu_family.startswith('etrax')


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]