summaryrefslogtreecommitdiffstats
path: root/gettext-tools
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2004-03-11 11:18:06 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:11:49 +0200
commit24b5070be7e92ad29ca2fbefae9fb9abc9e1d980 (patch)
treeb9ed6ccc38f10bca24bdee78993769ff9bd1775a /gettext-tools
parent0ac849a552ad05962ec8dcd0a53a0d91228d5c32 (diff)
downloadexternal_gettext-24b5070be7e92ad29ca2fbefae9fb9abc9e1d980.zip
external_gettext-24b5070be7e92ad29ca2fbefae9fb9abc9e1d980.tar.gz
external_gettext-24b5070be7e92ad29ca2fbefae9fb9abc9e1d980.tar.bz2
Fix the SIZE_MAX value for Windows.
Diffstat (limited to 'gettext-tools')
-rw-r--r--gettext-tools/ChangeLog4
-rw-r--r--gettext-tools/Makefile.am2
2 files changed, 5 insertions, 1 deletions
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/' \