ansi-c++-opt: Provide option --enable-c++/--disable-c++ when possible.
[gnulib.git] / modules / fnmatch
1 Description:
2 fnmatch() function: wildcard matching.
3
4 Files:
5 lib/fnmatch.in.h
6 lib/fnmatch.c
7 lib/fnmatch_loop.c
8 m4/mbstate_t.m4
9 m4/fnmatch.m4
10
11 Depends-on:
12 arg-nonnull
13 extensions
14 alloca
15 stdbool
16 wchar
17 wctype
18 memchr
19 memcmp
20 mbsrtowcs
21 mbsinit
22
23 configure.ac:
24 gl_FUNC_FNMATCH_POSIX
25
26 Makefile.am:
27 BUILT_SOURCES += $(FNMATCH_H)
28
29 # We need the following in order to create <fnmatch.h> when the system
30 # doesn't have one that supports the required API.
31 fnmatch.h: fnmatch.in.h $(ARG_NONNULL_H)
32         $(AM_V_GEN)rm -f $@-t $@ && \
33         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
34           sed -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
35               < $(srcdir)/fnmatch.in.h; \
36         } > $@-t && \
37         mv -f $@-t $@
38 MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t
39
40 Include:
41 <fnmatch.h>
42
43 License:
44 LGPLv2+
45
46 Maintainer:
47 all, glibc