fnmatch depends on mbsrtowcs and mbsinit.
[pspp] / modules / fnmatch
1 Description:
2 GNU implementation of the fnmatch() function.
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 alloca
14 stdbool
15 wchar
16 wctype
17 memchr
18 memcmp
19 mbsrtowcs
20 mbsinit
21
22 configure.ac:
23 # No macro. You should also use one of fnmatch-posix or fnmatch-gnu.
24
25 Makefile.am:
26 BUILT_SOURCES += $(FNMATCH_H)
27
28 # We need the following in order to create <fnmatch.h> when the system
29 # doesn't have one that supports the required API.
30 fnmatch.h: fnmatch.in.h
31         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
32           cat $(srcdir)/fnmatch.in.h; \
33         } > $@-t
34         mv -f $@-t $@
35 MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t
36
37 Include:
38 <fnmatch.h>
39
40 License:
41 LGPLv2+
42
43 Maintainer:
44 all, glibc