From: Bruno Haible Date: Thu, 24 Nov 2005 21:06:50 +0000 (+0000) Subject: Fix the setting of HAVE_FWPRINTF in the config.h for msvc and vms. X-Git-Tag: v0.15~343 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38d7f4e293d5938f589dc80a3c7f028d1182c607;p=thirdparty%2Fgettext.git Fix the setting of HAVE_FWPRINTF in the config.h for msvc and vms. --- diff --git a/gettext-runtime/ChangeLog b/gettext-runtime/ChangeLog index 1c9343b89..4eee768ec 100644 --- a/gettext-runtime/ChangeLog +++ b/gettext-runtime/ChangeLog @@ -1,3 +1,9 @@ +2005-11-24 Bruno Haible + + * Makefile.am (config.h_vms, config.h.msvc): Treat HAVE_FWPRINTF like + HAVE_WPRINTF. Needed since 2003-09-17. + Reported by Svante Seleborg . + 2005-08-28 Bruno Haible * Makefile.am (config.h_vms): Remove setting of HAVE_MALLOC_H, diff --git a/gettext-runtime/Makefile.am b/gettext-runtime/Makefile.am index db58922e0..32516ae06 100644 --- a/gettext-runtime/Makefile.am +++ b/gettext-runtime/Makefile.am @@ -56,6 +56,7 @@ config.h_vms: config.h.in ../version.sh -e 's/#undef HAVE_ALLOCA$$/#define HAVE_ALLOCA 1/' \ -e 's/#undef HAVE_DLFCN_H$$/#define HAVE_DLFCN_H 1/' \ -e 's/#undef HAVE_ERRNO_DECL$$/#define HAVE_ERRNO_DECL 1/' \ + -e 's/#undef HAVE_FWPRINTF$$/#define HAVE_FWPRINTF 1/' \ -e 's/#undef HAVE_GETCWD$$/#define HAVE_GETCWD 1/' \ -e 's/#undef HAVE_GETEGID$$/#define HAVE_GETEGID 1/' \ -e 's/#undef HAVE_GETEUID$$/#define HAVE_GETEUID 1/' \ @@ -137,6 +138,7 @@ config.h.msvc: config.h.in ../version.sh -e 's/#undef HAVE_DECL__SNWPRINTF$$/#define HAVE_DECL__SNWPRINTF 1/' \ -e 's/#undef HAVE_ENVIRON_DECL$$/#define HAVE_ENVIRON_DECL 1/' \ -e 's/#undef HAVE_ERRNO_DECL$$/#define HAVE_ERRNO_DECL 1/' \ + -e 's/#undef HAVE_FWPRINTF$$/#define HAVE_FWPRINTF 1/' \ -e 's/#undef HAVE_GETCWD$$/#define HAVE_GETCWD 1/' \ -e 's/#undef HAVE_ICONV$$/#define HAVE_ICONV 1/' \ -e 's/#undef HAVE_LIMITS_H$$/#define HAVE_LIMITS_H 1/' \ diff --git a/gettext-tools/ChangeLog b/gettext-tools/ChangeLog index 6e701e1c6..855894a8e 100644 --- a/gettext-tools/ChangeLog +++ b/gettext-tools/ChangeLog @@ -1,3 +1,9 @@ +2005-11-24 Bruno Haible + + * Makefile.am (config.h_vms, config.h.msvc): Treat HAVE_FWPRINTF like + HAVE_WPRINTF. Needed since 2003-09-17. + Reported by Svante Seleborg . + 2005-08-16 Bruno Haible * configure.ac: Remove gl_STRCASE invocation. diff --git a/gettext-tools/Makefile.am b/gettext-tools/Makefile.am index 812c85ac5..dd7aa3513 100644 --- a/gettext-tools/Makefile.am +++ b/gettext-tools/Makefile.am @@ -54,6 +54,7 @@ config.h_vms: config.h.in ../version.sh -e 's/#undef HAVE_DLFCN_H$$/#define HAVE_DLFCN_H 1/' \ -e 's/#undef HAVE_ERRNO_DECL$$/#define HAVE_ERRNO_DECL 1/' \ -e 's/#undef HAVE_FCNTL_H$$/#define HAVE_FCNTL_H 1/' \ + -e 's/#undef HAVE_FWPRINTF$$/#define HAVE_FWPRINTF 1/' \ -e 's/#undef HAVE_GETCWD$$/#define HAVE_GETCWD 1/' \ -e 's/#undef HAVE_GETEGID$$/#define HAVE_GETEGID 1/' \ -e 's/#undef HAVE_GETEUID$$/#define HAVE_GETEUID 1/' \ @@ -169,6 +170,7 @@ config.h.msvc: config.h.in ../version.sh -e 's/#undef HAVE_ENVIRON_DECL$$/#define HAVE_ENVIRON_DECL 1/' \ -e 's/#undef HAVE_ERRNO_DECL$$/#define HAVE_ERRNO_DECL 1/' \ -e 's/#undef HAVE_FCNTL_H$$/#define HAVE_FCNTL_H 1/' \ + -e 's/#undef HAVE_FWPRINTF$$/#define HAVE_FWPRINTF 1/' \ -e 's/#undef HAVE_GETCWD$$/#define HAVE_GETCWD 1/' \ -e 's/#undef HAVE_GETHOSTBYNAME$$/#define HAVE_GETHOSTBYNAME 1/' \ -e 's/#undef HAVE_GETHOSTNAME$$/#define HAVE_GETHOSTNAME 1/' \