From 7c2ae36588ec19f657a4585cd7fb9bf229d1b48a Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 28 Nov 2002 18:50:41 +0000 Subject: [PATCH] Fix the definitions around printf: either we use system printf in which * configure.in: Fix the definitions around printf: either we use system printf in which case HAVE_VASPRINTF, HAVE_C99_VSNPRINTF and HAVE_UNIX98_PRINTF have already been determined by earlier tests, or we use the included printf, in which case we know that these three can be defined as 1. (#99826) --- ChangeLog | 6 ++++++ ChangeLog.pre-2-10 | 6 ++++++ ChangeLog.pre-2-12 | 6 ++++++ ChangeLog.pre-2-2 | 6 ++++++ ChangeLog.pre-2-4 | 6 ++++++ ChangeLog.pre-2-6 | 6 ++++++ ChangeLog.pre-2-8 | 6 ++++++ configure.in | 1 + 8 files changed, 43 insertions(+) diff --git a/ChangeLog b/ChangeLog index a0fda40..dc22169 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2002-11-28 Matthias Clasen + * configure.in: Fix the definitions around printf: either we use + system printf in which case HAVE_VASPRINTF, HAVE_C99_VSNPRINTF and + HAVE_UNIX98_PRINTF have already been determined by earlier tests, + or we use the included printf, in which case we know that these + three can be defined as 1. (#99826) + * glib/gutf8.c (g_utf8_strreverse): * glib/gstrfuncs.c (g_str_has_suffix): (g_str_has_prefix): diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index a0fda40..dc22169 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,11 @@ 2002-11-28 Matthias Clasen + * configure.in: Fix the definitions around printf: either we use + system printf in which case HAVE_VASPRINTF, HAVE_C99_VSNPRINTF and + HAVE_UNIX98_PRINTF have already been determined by earlier tests, + or we use the included printf, in which case we know that these + three can be defined as 1. (#99826) + * glib/gutf8.c (g_utf8_strreverse): * glib/gstrfuncs.c (g_str_has_suffix): (g_str_has_prefix): diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index a0fda40..dc22169 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,5 +1,11 @@ 2002-11-28 Matthias Clasen + * configure.in: Fix the definitions around printf: either we use + system printf in which case HAVE_VASPRINTF, HAVE_C99_VSNPRINTF and + HAVE_UNIX98_PRINTF have already been determined by earlier tests, + or we use the included printf, in which case we know that these + three can be defined as 1. (#99826) + * glib/gutf8.c (g_utf8_strreverse): * glib/gstrfuncs.c (g_str_has_suffix): (g_str_has_prefix): diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index a0fda40..dc22169 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,5 +1,11 @@ 2002-11-28 Matthias Clasen + * configure.in: Fix the definitions around printf: either we use + system printf in which case HAVE_VASPRINTF, HAVE_C99_VSNPRINTF and + HAVE_UNIX98_PRINTF have already been determined by earlier tests, + or we use the included printf, in which case we know that these + three can be defined as 1. (#99826) + * glib/gutf8.c (g_utf8_strreverse): * glib/gstrfuncs.c (g_str_has_suffix): (g_str_has_prefix): diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index a0fda40..dc22169 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,5 +1,11 @@ 2002-11-28 Matthias Clasen + * configure.in: Fix the definitions around printf: either we use + system printf in which case HAVE_VASPRINTF, HAVE_C99_VSNPRINTF and + HAVE_UNIX98_PRINTF have already been determined by earlier tests, + or we use the included printf, in which case we know that these + three can be defined as 1. (#99826) + * glib/gutf8.c (g_utf8_strreverse): * glib/gstrfuncs.c (g_str_has_suffix): (g_str_has_prefix): diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index a0fda40..dc22169 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,5 +1,11 @@ 2002-11-28 Matthias Clasen + * configure.in: Fix the definitions around printf: either we use + system printf in which case HAVE_VASPRINTF, HAVE_C99_VSNPRINTF and + HAVE_UNIX98_PRINTF have already been determined by earlier tests, + or we use the included printf, in which case we know that these + three can be defined as 1. (#99826) + * glib/gutf8.c (g_utf8_strreverse): * glib/gstrfuncs.c (g_str_has_suffix): (g_str_has_prefix): diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index a0fda40..dc22169 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,5 +1,11 @@ 2002-11-28 Matthias Clasen + * configure.in: Fix the definitions around printf: either we use + system printf in which case HAVE_VASPRINTF, HAVE_C99_VSNPRINTF and + HAVE_UNIX98_PRINTF have already been determined by earlier tests, + or we use the included printf, in which case we know that these + three can be defined as 1. (#99826) + * glib/gutf8.c (g_utf8_strreverse): * glib/gstrfuncs.c (g_str_has_suffix): (g_str_has_prefix): diff --git a/configure.in b/configure.in index 115b4c5..e90d723 100644 --- a/configure.in +++ b/configure.in @@ -732,6 +732,7 @@ fi AM_CONDITIONAL(HAVE_GOOD_PRINTF, test "$enable_trio" != "yes") if test "$enable_trio" != "yes" ; then AC_DEFINE(HAVE_GOOD_PRINTF,1,[define to use system printf]) +else AC_DEFINE(HAVE_VASPRINTF,1) AC_DEFINE(HAVE_C99_VSNPRINTF,1) AC_DEFINE(HAVE_UNIX98_PRINTF,1) -- 2.7.4