fix typo on 64-bit printf formatting string configure message (fixes
authorjacob berkman <jacob@ximian.com>
Wed, 1 May 2002 15:21:07 +0000 (15:21 +0000)
committerJacob Berkman <jberkman@src.gnome.org>
Wed, 1 May 2002 15:21:07 +0000 (15:21 +0000)
2002-05-01  jacob berkman  <jacob@ximian.com>

* configure.in: fix typo on 64-bit printf formatting string
configure message (fixes #80389)

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 6138c05..f0832fe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-01  jacob berkman  <jacob@ximian.com>
+
+       * configure.in: fix typo on 64-bit printf formatting string
+       configure message (fixes #80389)
+
 2002-04-29  Pablo Saratxaga  <pablo@mandrakesoft.com>
 
        * configure.in: Added Vietnamese (vi) to ALL_LINGUAS
index 6138c05..f0832fe 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-01  jacob berkman  <jacob@ximian.com>
+
+       * configure.in: fix typo on 64-bit printf formatting string
+       configure message (fixes #80389)
+
 2002-04-29  Pablo Saratxaga  <pablo@mandrakesoft.com>
 
        * configure.in: Added Vietnamese (vi) to ALL_LINGUAS
index 6138c05..f0832fe 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-01  jacob berkman  <jacob@ximian.com>
+
+       * configure.in: fix typo on 64-bit printf formatting string
+       configure message (fixes #80389)
+
 2002-04-29  Pablo Saratxaga  <pablo@mandrakesoft.com>
 
        * configure.in: Added Vietnamese (vi) to ALL_LINGUAS
index 6138c05..f0832fe 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-01  jacob berkman  <jacob@ximian.com>
+
+       * configure.in: fix typo on 64-bit printf formatting string
+       configure message (fixes #80389)
+
 2002-04-29  Pablo Saratxaga  <pablo@mandrakesoft.com>
 
        * configure.in: Added Vietnamese (vi) to ALL_LINGUAS
index 6138c05..f0832fe 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-01  jacob berkman  <jacob@ximian.com>
+
+       * configure.in: fix typo on 64-bit printf formatting string
+       configure message (fixes #80389)
+
 2002-04-29  Pablo Saratxaga  <pablo@mandrakesoft.com>
 
        * configure.in: Added Vietnamese (vi) to ALL_LINGUAS
index 6138c05..f0832fe 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-01  jacob berkman  <jacob@ximian.com>
+
+       * configure.in: fix typo on 64-bit printf formatting string
+       configure message (fixes #80389)
+
 2002-04-29  Pablo Saratxaga  <pablo@mandrakesoft.com>
 
        * configure.in: Added Vietnamese (vi) to ALL_LINGUAS
index 6138c05..f0832fe 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-01  jacob berkman  <jacob@ximian.com>
+
+       * configure.in: fix typo on 64-bit printf formatting string
+       configure message (fixes #80389)
+
 2002-04-29  Pablo Saratxaga  <pablo@mandrakesoft.com>
 
        * configure.in: Added Vietnamese (vi) to ALL_LINGUAS
index 265f6d2..78aa75e 100644 (file)
@@ -378,7 +378,7 @@ fi
 
 if test x$ac_cv_sizeof_long_long = x8; then
        # long long is a 64 bit integer.
-       AC_MSG_CHECKING(for format to printf and scanf a gint64)
+       AC_MSG_CHECKING(for format to printf and scanf a guint64)
        AC_CACHE_VAL(glib_cv_long_long_format,[
                for format in ll q I64; do
                  AC_TRY_RUN([#include <stdio.h>  
@@ -401,7 +401,7 @@ if test x$ac_cv_sizeof_long_long = x8; then
         fi
 elif test x$ac_cv_sizeof___int64 = x8; then
        # __int64 is a 64 bit integer.
-       AC_MSG_CHECKING(for format to printf and scanf a gint64)
+       AC_MSG_CHECKING(for format to printf and scanf a guint64)
        # We know this is MSVC, and what the formats are
        glib_cv_long_long_format=I64
        AC_MSG_RESULT(%${glib_cv_long_long_format}u)