diff options
author | Bruno Haible <bruno@clisp.org> | 2003-05-15 17:54:09 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:10:29 +0200 |
commit | de8c5e8079cf7e5f1fb8b5efb2dcf3a9df537832 (patch) | |
tree | 28939d6d4bfdce104610df00f8f07b0dd815613d /gettext-tools | |
parent | b02036cae23c2bc1e4d78bfa110072298e07cf69 (diff) | |
download | external_gettext-de8c5e8079cf7e5f1fb8b5efb2dcf3a9df537832.zip external_gettext-de8c5e8079cf7e5f1fb8b5efb2dcf3a9df537832.tar.gz external_gettext-de8c5e8079cf7e5f1fb8b5efb2dcf3a9df537832.tar.bz2 |
Define HAVE_DECL_STRERROR on VMS and Woe32.
Diffstat (limited to 'gettext-tools')
-rw-r--r-- | gettext-tools/ChangeLog | 4 | ||||
-rw-r--r-- | gettext-tools/Makefile.am | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gettext-tools/ChangeLog b/gettext-tools/ChangeLog index 63b2ec7..7d669f9 100644 --- a/gettext-tools/ChangeLog +++ b/gettext-tools/ChangeLog @@ -1,3 +1,7 @@ +2003-05-15 Bruno Haible <bruno@clisp.org> + + * Makefile.am (config.h_vms, config.h.msvc): Define HAVE_DECL_STRERROR. + 2003-05-12 Bruno Haible <bruno@clisp.org> * configure.ac: Invoke AC_GNU_SOURCE and jm_FUNC_GLIBC_UNLOCKED_IO. diff --git a/gettext-tools/Makefile.am b/gettext-tools/Makefile.am index a52863b..a919b43 100644 --- a/gettext-tools/Makefile.am +++ b/gettext-tools/Makefile.am @@ -52,6 +52,7 @@ config.h_vms: config.h.in ../version.sh -e 's/#undef HAVE_ALLOCA$$/#define HAVE_ALLOCA 1/' \ -e 's/#undef HAVE_ARPA_INET_H$$/#define HAVE_ARPA_INET_H 1/' \ -e 's/#undef HAVE_CHOWN$$/#define HAVE_CHOWN 1/' \ + -e 's/#undef HAVE_DECL_STRERROR$$/#define HAVE_DECL_STRERROR 1/' \ -e 's/#undef HAVE_DECL_WCWIDTH$$/#define HAVE_DECL_WCWIDTH 1/' \ -e 's/#undef HAVE_DIRENT_H$$/#define HAVE_DIRENT_H 1/' \ -e 's/#undef HAVE_DLFCN_H$$/#define HAVE_DLFCN_H 1/' \ @@ -149,6 +150,7 @@ config.h.msvc: config.h.in ../version.sh sed -e 's/#undef ENABLE_NLS$$/#define ENABLE_NLS 1/' \ -e 's/#undef ENABLE_RELOCATABLE$$/#define ENABLE_RELOCATABLE 1/' \ -e 's/#undef HAVE_ALLOCA$$/#define HAVE_ALLOCA 1/' \ + -e 's/#undef HAVE_DECL_STRERROR$$/#define HAVE_DECL_STRERROR 1/' \ -e 's/#undef HAVE_DECL_WCWIDTH$$/#define HAVE_DECL_WCWIDTH 0/' \ -e 's/#undef HAVE_ENVIRON_DECL$$/#define HAVE_ENVIRON_DECL 1/' \ -e 's/#undef HAVE_ERRNO_DECL$$/#define HAVE_ERRNO_DECL 1/' \ |