fix typo on 64-bit printf formatting string configure message (fixes

2002-05-01  jacob berkman  <jacob@ximian.com>

	* configure.in: fix typo on 64-bit printf formatting string
	configure message (fixes #80389)
This commit is contained in:
jacob berkman 2002-05-01 15:21:07 +00:00 committed by Jacob Berkman
parent 81d6a7dd7c
commit dccffe146d
8 changed files with 37 additions and 2 deletions

View 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> 2002-04-29 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Vietnamese (vi) to ALL_LINGUAS * configure.in: Added Vietnamese (vi) to ALL_LINGUAS

View 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> 2002-04-29 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Vietnamese (vi) to ALL_LINGUAS * configure.in: Added Vietnamese (vi) to ALL_LINGUAS

View 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> 2002-04-29 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Vietnamese (vi) to ALL_LINGUAS * configure.in: Added Vietnamese (vi) to ALL_LINGUAS

View 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> 2002-04-29 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Vietnamese (vi) to ALL_LINGUAS * configure.in: Added Vietnamese (vi) to ALL_LINGUAS

View 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> 2002-04-29 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Vietnamese (vi) to ALL_LINGUAS * configure.in: Added Vietnamese (vi) to ALL_LINGUAS

View 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> 2002-04-29 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Vietnamese (vi) to ALL_LINGUAS * configure.in: Added Vietnamese (vi) to ALL_LINGUAS

View 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> 2002-04-29 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Vietnamese (vi) to ALL_LINGUAS * configure.in: Added Vietnamese (vi) to ALL_LINGUAS

View File

@ -378,7 +378,7 @@ fi
if test x$ac_cv_sizeof_long_long = x8; then if test x$ac_cv_sizeof_long_long = x8; then
# long long is a 64 bit integer. # 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,[ AC_CACHE_VAL(glib_cv_long_long_format,[
for format in ll q I64; do for format in ll q I64; do
AC_TRY_RUN([#include <stdio.h> AC_TRY_RUN([#include <stdio.h>
@ -401,7 +401,7 @@ if test x$ac_cv_sizeof_long_long = x8; then
fi fi
elif test x$ac_cv_sizeof___int64 = x8; then elif test x$ac_cv_sizeof___int64 = x8; then
# __int64 is a 64 bit integer. # __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 # We know this is MSVC, and what the formats are
glib_cv_long_long_format=I64 glib_cv_long_long_format=I64
AC_MSG_RESULT(%${glib_cv_long_long_format}u) AC_MSG_RESULT(%${glib_cv_long_long_format}u)