# HG changeset patch # User Eric Blake # Date 1299799580 25200 # Node ID be956be734e08828a0ca248de9b43249b8b21419 # Parent 70c46ee1fb5be6b7ee10cf53d5fb1d02c4120cbb wchar: add explicit dependencies, for Tru64 Commit 9a354cd exposed a few modules that were previously picking up the 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 diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2011-03-10 Eric Blake + + 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 passfd module, part 1, tweaks. diff --git a/modules/mbmemcasecoll b/modules/mbmemcasecoll --- a/modules/mbmemcasecoll +++ b/modules/mbmemcasecoll @@ -13,6 +13,7 @@ wcrtomb memcmp2 memcoll +wchar configure.ac: diff --git a/modules/mbtowc b/modules/mbtowc --- a/modules/mbtowc +++ b/modules/mbtowc @@ -9,6 +9,7 @@ Depends-on: stdlib mbrtowc +wchar configure.ac: gl_FUNC_MBTOWC diff --git a/modules/unistdio/u-printf-args b/modules/unistdio/u-printf-args --- 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 diff --git a/modules/vasnprintf b/modules/vasnprintf --- a/modules/vasnprintf +++ b/modules/vasnprintf @@ -27,6 +27,7 @@ errno memchr verify +wchar configure.ac: gl_FUNC_VASNPRINTF diff --git a/modules/wctomb b/modules/wctomb --- a/modules/wctomb +++ b/modules/wctomb @@ -9,6 +9,7 @@ Depends-on: stdlib wcrtomb +wchar configure.ac: gl_FUNC_WCTOMB