Imported Upstream version 1.14.1
[platform/upstream/augeas.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 extensions
13 snippet/arg-nonnull
14 alloca          [test -n "$FNMATCH_H"]
15 flexmember      [test -n "$FNMATCH_H"]
16 stdbool         [test -n "$FNMATCH_H"]
17 wchar           [test -n "$FNMATCH_H"]
18 wctype-h        [test -n "$FNMATCH_H"]
19 memchr          [test -n "$FNMATCH_H"]
20 memcmp          [test -n "$FNMATCH_H"]
21 mbsrtowcs       [test -n "$FNMATCH_H"]
22 mbsinit         [test -n "$FNMATCH_H"]
23
24 configure.ac:
25 gl_FUNC_FNMATCH_POSIX
26 if test -n "$FNMATCH_H"; then
27   AC_LIBOBJ([fnmatch])
28   gl_PREREQ_FNMATCH
29 fi
30
31 Makefile.am:
32 BUILT_SOURCES += $(FNMATCH_H)
33
34 # We need the following in order to create <fnmatch.h> when the system
35 # doesn't have one that supports the required API.
36 if GL_GENERATE_FNMATCH_H
37 fnmatch.h: fnmatch.in.h $(top_builddir)/config.status $(ARG_NONNULL_H)
38         $(AM_V_GEN)rm -f $@-t $@ && \
39         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
40           sed -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
41               < $(srcdir)/fnmatch.in.h; \
42         } > $@-t && \
43         mv -f $@-t $@
44 else
45 fnmatch.h: $(top_builddir)/config.status
46         rm -f $@
47 endif
48 MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t
49
50 Include:
51 <fnmatch.h>
52
53 License:
54 LGPLv2+
55
56 Maintainer:
57 all, glibc