added missing dependencies to fix failing unistr/ tests
[gnulib.git] / modules / wchar
1 Description:
2 A <wchar.h> that works around platform issues.
3
4 Files:
5 lib/wchar.in.h
6 m4/wchar_h.m4
7 m4/wint_t.m4
8
9 Depends-on:
10 arg-nonnull
11 c++defs
12 include_next
13 stddef
14 warn-on-use
15
16 configure.ac:
17 gl_WCHAR_H
18
19 Makefile.am:
20 BUILT_SOURCES += wchar.h
21
22 # We need the following in order to create <wchar.h> when the system
23 # version does not work standalone.
24 wchar.h: wchar.in.h $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
25         $(AM_V_GEN)rm -f $@-t $@ && \
26         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
27           sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
28               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
29               -e 's|@''NEXT_WCHAR_H''@|$(NEXT_WCHAR_H)|g' \
30               -e 's|@''HAVE_WCHAR_H''@|$(HAVE_WCHAR_H)|g' \
31               -e 's|@''GNULIB_BTOWC''@|$(GNULIB_BTOWC)|g' \
32               -e 's|@''GNULIB_WCTOB''@|$(GNULIB_WCTOB)|g' \
33               -e 's|@''GNULIB_MBSINIT''@|$(GNULIB_MBSINIT)|g' \
34               -e 's|@''GNULIB_MBRTOWC''@|$(GNULIB_MBRTOWC)|g' \
35               -e 's|@''GNULIB_MBRLEN''@|$(GNULIB_MBRLEN)|g' \
36               -e 's|@''GNULIB_MBSRTOWCS''@|$(GNULIB_MBSRTOWCS)|g' \
37               -e 's|@''GNULIB_MBSNRTOWCS''@|$(GNULIB_MBSNRTOWCS)|g' \
38               -e 's|@''GNULIB_WCRTOMB''@|$(GNULIB_WCRTOMB)|g' \
39               -e 's|@''GNULIB_WCSRTOMBS''@|$(GNULIB_WCSRTOMBS)|g' \
40               -e 's|@''GNULIB_WCSNRTOMBS''@|$(GNULIB_WCSNRTOMBS)|g' \
41               -e 's|@''GNULIB_WCWIDTH''@|$(GNULIB_WCWIDTH)|g' \
42               -e 's|@''HAVE_WINT_T''@|$(HAVE_WINT_T)|g' \
43               -e 's|@''HAVE_BTOWC''@|$(HAVE_BTOWC)|g' \
44               -e 's|@''HAVE_MBSINIT''@|$(HAVE_MBSINIT)|g' \
45               -e 's|@''HAVE_MBRTOWC''@|$(HAVE_MBRTOWC)|g' \
46               -e 's|@''HAVE_MBRLEN''@|$(HAVE_MBRLEN)|g' \
47               -e 's|@''HAVE_MBSRTOWCS''@|$(HAVE_MBSRTOWCS)|g' \
48               -e 's|@''HAVE_MBSNRTOWCS''@|$(HAVE_MBSNRTOWCS)|g' \
49               -e 's|@''HAVE_WCRTOMB''@|$(HAVE_WCRTOMB)|g' \
50               -e 's|@''HAVE_WCSRTOMBS''@|$(HAVE_WCSRTOMBS)|g' \
51               -e 's|@''HAVE_WCSNRTOMBS''@|$(HAVE_WCSNRTOMBS)|g' \
52               -e 's|@''HAVE_DECL_WCTOB''@|$(HAVE_DECL_WCTOB)|g' \
53               -e 's|@''HAVE_DECL_WCWIDTH''@|$(HAVE_DECL_WCWIDTH)|g' \
54               -e 's|@''REPLACE_MBSTATE_T''@|$(REPLACE_MBSTATE_T)|g' \
55               -e 's|@''REPLACE_BTOWC''@|$(REPLACE_BTOWC)|g' \
56               -e 's|@''REPLACE_WCTOB''@|$(REPLACE_WCTOB)|g' \
57               -e 's|@''REPLACE_MBSINIT''@|$(REPLACE_MBSINIT)|g' \
58               -e 's|@''REPLACE_MBRTOWC''@|$(REPLACE_MBRTOWC)|g' \
59               -e 's|@''REPLACE_MBRLEN''@|$(REPLACE_MBRLEN)|g' \
60               -e 's|@''REPLACE_MBSRTOWCS''@|$(REPLACE_MBSRTOWCS)|g' \
61               -e 's|@''REPLACE_MBSNRTOWCS''@|$(REPLACE_MBSNRTOWCS)|g' \
62               -e 's|@''REPLACE_WCRTOMB''@|$(REPLACE_WCRTOMB)|g' \
63               -e 's|@''REPLACE_WCSRTOMBS''@|$(REPLACE_WCSRTOMBS)|g' \
64               -e 's|@''REPLACE_WCSNRTOMBS''@|$(REPLACE_WCSNRTOMBS)|g' \
65               -e 's|@''REPLACE_WCWIDTH''@|$(REPLACE_WCWIDTH)|g' \
66               -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
67               -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
68               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
69             < $(srcdir)/wchar.in.h; \
70         } > $@-t && \
71         mv $@-t $@
72 MOSTLYCLEANFILES += wchar.h wchar.h-t
73
74 Include:
75 <wchar.h>
76
77 License:
78 LGPLv2+
79
80 Maintainer:
81 all