From dccffe146d96bd76ee003db7143647994b70b6dd Mon Sep 17 00:00:00 2001 From: jacob berkman Date: Wed, 1 May 2002 15:21:07 +0000 Subject: [PATCH] fix typo on 64-bit printf formatting string configure message (fixes 2002-05-01 jacob berkman * configure.in: fix typo on 64-bit printf formatting string configure message (fixes #80389) --- ChangeLog | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-12 | 5 +++++ ChangeLog.pre-2-2 | 5 +++++ ChangeLog.pre-2-4 | 5 +++++ ChangeLog.pre-2-6 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ configure.in | 4 ++-- 8 files changed, 37 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6138c0582..f0832feed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-05-01 jacob berkman + + * configure.in: fix typo on 64-bit printf formatting string + configure message (fixes #80389) + 2002-04-29 Pablo Saratxaga * configure.in: Added Vietnamese (vi) to ALL_LINGUAS diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 6138c0582..f0832feed 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2002-05-01 jacob berkman + + * configure.in: fix typo on 64-bit printf formatting string + configure message (fixes #80389) + 2002-04-29 Pablo Saratxaga * configure.in: Added Vietnamese (vi) to ALL_LINGUAS diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 6138c0582..f0832feed 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +2002-05-01 jacob berkman + + * configure.in: fix typo on 64-bit printf formatting string + configure message (fixes #80389) + 2002-04-29 Pablo Saratxaga * configure.in: Added Vietnamese (vi) to ALL_LINGUAS diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 6138c0582..f0832feed 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +2002-05-01 jacob berkman + + * configure.in: fix typo on 64-bit printf formatting string + configure message (fixes #80389) + 2002-04-29 Pablo Saratxaga * configure.in: Added Vietnamese (vi) to ALL_LINGUAS diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 6138c0582..f0832feed 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2002-05-01 jacob berkman + + * configure.in: fix typo on 64-bit printf formatting string + configure message (fixes #80389) + 2002-04-29 Pablo Saratxaga * configure.in: Added Vietnamese (vi) to ALL_LINGUAS diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 6138c0582..f0832feed 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2002-05-01 jacob berkman + + * configure.in: fix typo on 64-bit printf formatting string + configure message (fixes #80389) + 2002-04-29 Pablo Saratxaga * configure.in: Added Vietnamese (vi) to ALL_LINGUAS diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 6138c0582..f0832feed 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2002-05-01 jacob berkman + + * configure.in: fix typo on 64-bit printf formatting string + configure message (fixes #80389) + 2002-04-29 Pablo Saratxaga * configure.in: Added Vietnamese (vi) to ALL_LINGUAS diff --git a/configure.in b/configure.in index 265f6d27e..78aa75e5a 100644 --- a/configure.in +++ b/configure.in @@ -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 @@ -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)