fix test-poll compilation failure on Cygwin
[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 alloca
13 d-type
14 dirfd
15 extensions
16 fnmatch
17 getlogin_r
18 mempcpy
19 stdbool
20 strdup
21 sys_stat
22 unistd
23 malloc-posix
24
25 configure.ac:
26 gl_GLOB
27
28 Makefile.am:
29 BUILT_SOURCES += $(GLOB_H)
30
31 # We need the following in order to create <glob.h> when the system
32 # doesn't have one that works with the given compiler.
33 glob.h: glob.in.h
34         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
35           sed -e 's|@''HAVE_SYS_CDEFS_H''@|$(HAVE_SYS_CDEFS_H)|g' \
36               < $(srcdir)/glob.in.h; \
37         } > $@-t
38         mv -f $@-t $@
39 MOSTLYCLEANFILES += glob.h glob.h-t
40
41 Include:
42 <glob.h>
43
44 License:
45 LGPLv2+
46
47 Maintainer:
48 all, glibc