Fix the definitions around printf: either we use system printf in which
authorMatthias Clasen <matthiasc@src.gnome.org>
Thu, 28 Nov 2002 18:50:41 +0000 (18:50 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 28 Nov 2002 18:50:41 +0000 (18:50 +0000)
* 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
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
configure.in

index a0fda40..dc22169 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2002-11-28  Matthias Clasen  <maclas@gmx.de>
 
+       * 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): 
index a0fda40..dc22169 100644 (file)
@@ -1,5 +1,11 @@
 2002-11-28  Matthias Clasen  <maclas@gmx.de>
 
+       * 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): 
index a0fda40..dc22169 100644 (file)
@@ -1,5 +1,11 @@
 2002-11-28  Matthias Clasen  <maclas@gmx.de>
 
+       * 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): 
index a0fda40..dc22169 100644 (file)
@@ -1,5 +1,11 @@
 2002-11-28  Matthias Clasen  <maclas@gmx.de>
 
+       * 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): 
index a0fda40..dc22169 100644 (file)
@@ -1,5 +1,11 @@
 2002-11-28  Matthias Clasen  <maclas@gmx.de>
 
+       * 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): 
index a0fda40..dc22169 100644 (file)
@@ -1,5 +1,11 @@
 2002-11-28  Matthias Clasen  <maclas@gmx.de>
 
+       * 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): 
index a0fda40..dc22169 100644 (file)
@@ -1,5 +1,11 @@
 2002-11-28  Matthias Clasen  <maclas@gmx.de>
 
+       * 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): 
index 115b4c5..e90d723 100644 (file)
@@ -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)