From: Matthias Clasen Date: Fri, 14 Nov 2003 23:48:03 +0000 (+0000) Subject: Don't blindly set glib_cv_long_long_format to "ll" when using the included X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=f3a59d07bcf6b7ef9f31e8fb8af4503ae206e682;p=dana%2Fcg-glib.git Don't blindly set glib_cv_long_long_format to "ll" when using the included Sat Nov 15 00:46:14 2003 Matthias Clasen * 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) --- diff --git a/ChangeLog b/ChangeLog index eca06fd8..146728d7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +Sat Nov 15 00:46:14 2003 Matthias Clasen + + * 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 + + * 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 * configure.in: Version 2.3.1, interface age 0. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index eca06fd8..146728d7 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,16 @@ +Sat Nov 15 00:46:14 2003 Matthias Clasen + + * 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 + + * 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 * configure.in: Version 2.3.1, interface age 0. diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index eca06fd8..146728d7 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,16 @@ +Sat Nov 15 00:46:14 2003 Matthias Clasen + + * 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 + + * 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 * configure.in: Version 2.3.1, interface age 0. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index eca06fd8..146728d7 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,16 @@ +Sat Nov 15 00:46:14 2003 Matthias Clasen + + * 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 + + * 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 * configure.in: Version 2.3.1, interface age 0. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index eca06fd8..146728d7 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,16 @@ +Sat Nov 15 00:46:14 2003 Matthias Clasen + + * 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 + + * 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 * configure.in: Version 2.3.1, interface age 0. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index eca06fd8..146728d7 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,16 @@ +Sat Nov 15 00:46:14 2003 Matthias Clasen + + * 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 + + * 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 * configure.in: Version 2.3.1, interface age 0. diff --git a/configure.in b/configure.in index 7cad70e2..768f0d4b 100644 --- a/configure.in +++ b/configure.in @@ -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