changeset 14413:be956be734e0

wchar: add explicit dependencies, for Tru64 Commit 9a354cd exposed a few modules that were previously picking up the <wchar.h> replacement via indirect dependency, rather than explicitly including it. This led to a compile failure on Tru64 for the vsnprintf module, for example. * modules/mbmemcasecoll (Depends-on): Add wchar. * modules/mbtowc (Depends-on): Likewise. * modules/vasnprintf (Depends-on): Likewise. * modules/unistdio/u-printf-args (Depends-on): Likewise. * modules/wctomb (Depends-on): Likewise. Reported by Peter O'Gorman. Signed-off-by: Eric Blake <eblake@redhat.com>
author Eric Blake <eblake@redhat.com>
date Thu, 10 Mar 2011 16:26:20 -0700
parents 70c46ee1fb5b
children 29f8fb6ed4b4
files ChangeLog modules/mbmemcasecoll modules/mbtowc modules/unistdio/u-printf-args modules/vasnprintf modules/wctomb
diffstat 6 files changed, 15 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2011-03-10  Eric Blake  <eblake@redhat.com>
+
+	wchar: add explicit dependencies, for Tru64
+	* modules/mbmemcasecoll (Depends-on): Add wchar.
+	* modules/mbtowc (Depends-on): Likewise.
+	* modules/vasnprintf (Depends-on): Likewise.
+	* modules/unistdio/u-printf-args (Depends-on): Likewise.
+	* modules/wctomb (Depends-on): Likewise.
+	Reported by Peter O'Gorman.
+
 2011-03-08  Bruno Haible  <bruno@clisp.org>
 
 	passfd module, part 1, tweaks.
--- a/modules/mbmemcasecoll
+++ b/modules/mbmemcasecoll
@@ -13,6 +13,7 @@
 wcrtomb
 memcmp2
 memcoll
+wchar
 
 configure.ac:
 
--- a/modules/mbtowc
+++ b/modules/mbtowc
@@ -9,6 +9,7 @@
 Depends-on:
 stdlib
 mbrtowc
+wchar
 
 configure.ac:
 gl_FUNC_MBTOWC
--- a/modules/unistdio/u-printf-args
+++ b/modules/unistdio/u-printf-args
@@ -13,6 +13,7 @@
 
 Depends-on:
 unitypes
+wchar
 
 configure.ac:
 gl_PREREQ_PRINTF_ARGS
--- a/modules/vasnprintf
+++ b/modules/vasnprintf
@@ -27,6 +27,7 @@
 errno
 memchr
 verify
+wchar
 
 configure.ac:
 gl_FUNC_VASNPRINTF
--- a/modules/wctomb
+++ b/modules/wctomb
@@ -9,6 +9,7 @@
 Depends-on:
 stdlib
 wcrtomb
+wchar
 
 configure.ac:
 gl_FUNC_WCTOMB