Don't blindly set glib_cv_long_long_format to "ll" when using the included

Sat Nov 15 00:46:14 2003  Matthias Clasen  <maclas@gmx.de>

	* configure.in: Don't blindly set glib_cv_long_long_format to
	"ll" when using the included printf. As long as the native
	printf supports 64bit printing, use the native format.
	(#119525, Tor Lillquist)
This commit is contained in:
Matthias Clasen 2003-11-14 23:48:03 +00:00 committed by Matthias Clasen
parent 468cf380df
commit f3a59d07bc
7 changed files with 81 additions and 1 deletions

View File

@ -1,3 +1,16 @@
Sat Nov 15 00:46:14 2003 Matthias Clasen <maclas@gmx.de>
* configure.in: Don't blindly set glib_cv_long_long_format to
"ll" when using the included printf. As long as the native
printf supports 64bit printing, use the native format.
(#119525, Tor Lillquist)
Fri Nov 14 00:28:46 2003 Matthias Clasen <maclas@gmx.de>
* glib/gi18n.h:
* glib/gi18n-lib.h: Also define bind_textdomain_codeset() in
the #ifndef ENABLE_NLS case.
Wed Nov 12 15:06:27 2003 Owen Taylor <otaylor@redhat.com>
* configure.in: Version 2.3.1, interface age 0.

View File

@ -1,3 +1,16 @@
Sat Nov 15 00:46:14 2003 Matthias Clasen <maclas@gmx.de>
* configure.in: Don't blindly set glib_cv_long_long_format to
"ll" when using the included printf. As long as the native
printf supports 64bit printing, use the native format.
(#119525, Tor Lillquist)
Fri Nov 14 00:28:46 2003 Matthias Clasen <maclas@gmx.de>
* glib/gi18n.h:
* glib/gi18n-lib.h: Also define bind_textdomain_codeset() in
the #ifndef ENABLE_NLS case.
Wed Nov 12 15:06:27 2003 Owen Taylor <otaylor@redhat.com>
* configure.in: Version 2.3.1, interface age 0.

View File

@ -1,3 +1,16 @@
Sat Nov 15 00:46:14 2003 Matthias Clasen <maclas@gmx.de>
* configure.in: Don't blindly set glib_cv_long_long_format to
"ll" when using the included printf. As long as the native
printf supports 64bit printing, use the native format.
(#119525, Tor Lillquist)
Fri Nov 14 00:28:46 2003 Matthias Clasen <maclas@gmx.de>
* glib/gi18n.h:
* glib/gi18n-lib.h: Also define bind_textdomain_codeset() in
the #ifndef ENABLE_NLS case.
Wed Nov 12 15:06:27 2003 Owen Taylor <otaylor@redhat.com>
* configure.in: Version 2.3.1, interface age 0.

View File

@ -1,3 +1,16 @@
Sat Nov 15 00:46:14 2003 Matthias Clasen <maclas@gmx.de>
* configure.in: Don't blindly set glib_cv_long_long_format to
"ll" when using the included printf. As long as the native
printf supports 64bit printing, use the native format.
(#119525, Tor Lillquist)
Fri Nov 14 00:28:46 2003 Matthias Clasen <maclas@gmx.de>
* glib/gi18n.h:
* glib/gi18n-lib.h: Also define bind_textdomain_codeset() in
the #ifndef ENABLE_NLS case.
Wed Nov 12 15:06:27 2003 Owen Taylor <otaylor@redhat.com>
* configure.in: Version 2.3.1, interface age 0.

View File

@ -1,3 +1,16 @@
Sat Nov 15 00:46:14 2003 Matthias Clasen <maclas@gmx.de>
* configure.in: Don't blindly set glib_cv_long_long_format to
"ll" when using the included printf. As long as the native
printf supports 64bit printing, use the native format.
(#119525, Tor Lillquist)
Fri Nov 14 00:28:46 2003 Matthias Clasen <maclas@gmx.de>
* glib/gi18n.h:
* glib/gi18n-lib.h: Also define bind_textdomain_codeset() in
the #ifndef ENABLE_NLS case.
Wed Nov 12 15:06:27 2003 Owen Taylor <otaylor@redhat.com>
* configure.in: Version 2.3.1, interface age 0.

View File

@ -1,3 +1,16 @@
Sat Nov 15 00:46:14 2003 Matthias Clasen <maclas@gmx.de>
* configure.in: Don't blindly set glib_cv_long_long_format to
"ll" when using the included printf. As long as the native
printf supports 64bit printing, use the native format.
(#119525, Tor Lillquist)
Fri Nov 14 00:28:46 2003 Matthias Clasen <maclas@gmx.de>
* glib/gi18n.h:
* glib/gi18n-lib.h: Also define bind_textdomain_codeset() in
the #ifndef ENABLE_NLS case.
Wed Nov 12 15:06:27 2003 Owen Taylor <otaylor@redhat.com>
* configure.in: Version 2.3.1, interface age 0.

View File

@ -782,7 +782,9 @@ AM_CONDITIONAL(HAVE_GOOD_PRINTF, test "$enable_included_printf" != "yes")
if test "$enable_included_printf" != "yes" ; then
AC_DEFINE(HAVE_GOOD_PRINTF,1,[define to use system printf])
else
glib_cv_long_long_format="ll"
if test -z "$glib_cv_long_long_format" ; then
glib_cv_long_long_format="ll"
fi
AC_DEFINE(HAVE_VASPRINTF,1)
fi