getugroups: Fix module description.
[gnulib.git] / modules / glob
1 Description:
2 glob() function: Search for files and directories with paths matching a
3 pattern, with GNU extensions.
4
5 Files:
6 lib/glob.in.h
7 lib/glob-libc.h
8 lib/glob.c
9 m4/glob.m4
10
11 Depends-on:
12 arg-nonnull
13 c++defs
14 extensions
15 warn-on-use
16 alloca          [test -n "$GLOB_H"]
17 d-type          [test -n "$GLOB_H"]
18 dirfd           [test -n "$GLOB_H"]
19 fnmatch         [test -n "$GLOB_H"]
20 getlogin_r      [test -n "$GLOB_H"]
21 memchr          [test -n "$GLOB_H"]
22 mempcpy         [test -n "$GLOB_H"]
23 stdbool         [test -n "$GLOB_H"]
24 strdup          [test -n "$GLOB_H"]
25 sys_stat        [test -n "$GLOB_H"]
26 unistd          [test -n "$GLOB_H"]
27 malloc-posix    [test -n "$GLOB_H"]
28
29 configure.ac:
30 gl_GLOB
31
32 Makefile.am:
33 BUILT_SOURCES += $(GLOB_H)
34
35 # We need the following in order to create <glob.h> when the system
36 # doesn't have one that works with the given compiler.
37 if GL_GENERATE_GLOB_H
38 glob.h: glob.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
39         $(AM_V_GEN)rm -f $@-t $@ && \
40         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
41           sed -e 's|@''HAVE_SYS_CDEFS_H''@|$(HAVE_SYS_CDEFS_H)|g' \
42               -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
43               -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
44               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
45               < $(srcdir)/glob.in.h; \
46         } > $@-t && \
47         mv -f $@-t $@
48 else
49 glob.h: $(top_builddir)/config.status
50         rm -f $@
51 endif
52 MOSTLYCLEANFILES += glob.h glob.h-t
53
54 Include:
55 <glob.h>
56
57 License:
58 LGPLv2+
59
60 Maintainer:
61 all, glibc