diff options
-rw-r--r-- | gettext-runtime/ChangeLog | 4 | ||||
-rw-r--r-- | gettext-runtime/Makefile.am | 2 | ||||
-rw-r--r-- | gettext-runtime/libasprintf/ChangeLog | 4 | ||||
-rw-r--r-- | gettext-runtime/libasprintf/Makefile.am | 2 | ||||
-rw-r--r-- | gettext-tools/ChangeLog | 4 | ||||
-rw-r--r-- | gettext-tools/Makefile.am | 2 |
6 files changed, 15 insertions, 3 deletions
diff --git a/gettext-runtime/ChangeLog b/gettext-runtime/ChangeLog index dcf6563..3cd921f 100644 --- a/gettext-runtime/ChangeLog +++ b/gettext-runtime/ChangeLog @@ -1,3 +1,7 @@ +2004-03-11 Bruno Haible <bruno@clisp.org> + + * Makefile.am (config.h.msvc): Fix the value of SIZE_MAX. + 2004-01-29 Bruno Haible <bruno@clisp.org> * gettext-0.14.1 released. diff --git a/gettext-runtime/Makefile.am b/gettext-runtime/Makefile.am index 473dd1f..f2be209 100644 --- a/gettext-runtime/Makefile.am +++ b/gettext-runtime/Makefile.am @@ -156,7 +156,7 @@ config.h.msvc: config.h.in ../version.sh -e 's/#undef HAVE_WPRINTF$$/#define HAVE_WPRINTF 1/' \ -e 's/#undef ICONV_CONST$$/#define ICONV_CONST const/' \ -e 's/#undef MALLOC_0_IS_NONNULL$$/#define MALLOC_0_IS_NONNULL 1/' \ - -e 's/#undef SIZE_MAX$$/#define SIZE_MAX 2147483647U/' \ + -e 's/#undef SIZE_MAX$$/#define SIZE_MAX 4294967295U/' \ -e 's/#undef STACK_DIRECTION$$/#define STACK_DIRECTION -1/' \ -e 's/#undef STDC_HEADERS$$/#define STDC_HEADERS 1/' \ -e 's/#undef inline$$/#define inline __inline/' \ diff --git a/gettext-runtime/libasprintf/ChangeLog b/gettext-runtime/libasprintf/ChangeLog index 65d5970..95761bb 100644 --- a/gettext-runtime/libasprintf/ChangeLog +++ b/gettext-runtime/libasprintf/ChangeLog @@ -1,3 +1,7 @@ +2004-03-11 Bruno Haible <bruno@clisp.org> + + * Makefile.am (config.h.msvc): Fix the value of SIZE_MAX. + 2004-02-02 Bruno Haible <bruno@clisp.org> * Makefile.am (RM): New variable. diff --git a/gettext-runtime/libasprintf/Makefile.am b/gettext-runtime/libasprintf/Makefile.am index bdd4bb8..386c414 100644 --- a/gettext-runtime/libasprintf/Makefile.am +++ b/gettext-runtime/libasprintf/Makefile.am @@ -219,7 +219,7 @@ config.h.msvc: config.h.in -e 's/#undef HAVE_WCHAR_T$$/#define HAVE_WCHAR_T 1/' \ -e 's/#undef HAVE_WCSLEN$$/#define HAVE_WCSLEN 1/' \ -e 's/#undef HAVE_WINT_T$$/#define HAVE_WINT_T 1/' \ - -e 's/#undef SIZE_MAX$$/#define SIZE_MAX 2147483647U/' \ + -e 's/#undef SIZE_MAX$$/#define SIZE_MAX 4294967295U/' \ -e 's/#undef inline$$/#define inline __inline/' \ < $(srcdir)/config.h.in > $@ diff --git a/gettext-tools/ChangeLog b/gettext-tools/ChangeLog index 6331720..c6c6752 100644 --- a/gettext-tools/ChangeLog +++ b/gettext-tools/ChangeLog @@ -1,3 +1,7 @@ +2004-03-11 Bruno Haible <bruno@clisp.org> + + * Makefile.am (config.h.msvc): Fix the value of SIZE_MAX. + 2004-02-07 Bruno Haible <bruno@clisp.org> * configure.ac: Invoke gl_QUOTEARG. diff --git a/gettext-tools/Makefile.am b/gettext-tools/Makefile.am index c2ffd1b..b65a02f 100644 --- a/gettext-tools/Makefile.am +++ b/gettext-tools/Makefile.am @@ -200,7 +200,7 @@ config.h.msvc: config.h.in ../version.sh -e 's/#undef ICONV_CONST$$/#define ICONV_CONST const/' \ -e 's/#undef MALLOC_0_IS_NONNULL$$/#define MALLOC_0_IS_NONNULL 1/' \ -e 's/#undef SETLOCALE_CONST$$/#define SETLOCALE_CONST const/' \ - -e 's/#undef SIZE_MAX$$/#define SIZE_MAX 2147483647U/' \ + -e 's/#undef SIZE_MAX$$/#define SIZE_MAX 4294967295U/' \ -e 's/#undef STACK_DIRECTION$$/#define STACK_DIRECTION -1/' \ -e 's/#undef STDC_HEADERS$$/#define STDC_HEADERS 1/' \ -e 's/#undef fnmatch$$/#define fnmatch rpl_fnmatch/' \ |