doc: Mention module execinfo.
[gnulib.git] / modules / stat
blobb6b7d28722136c80770755862900a7f358e78768
1 Description:
2 stat() function: query file information
4 Files:
5 lib/stat.c
6 lib/stat-w32.h
7 lib/stat-w32.c
8 m4/stat.m4
10 Depends-on:
11 sys_stat
12 largefile
13 assert-h        [test $REPLACE_STAT = 1]
14 filename        [test $REPLACE_STAT = 1]
15 malloca         [test $REPLACE_STAT = 1]
16 pathmax         [test $REPLACE_STAT = 1]
17 stat-time       [test $REPLACE_STAT = 1]
18 stdbool         [test $REPLACE_STAT = 1]
20 configure.ac:
21 gl_FUNC_STAT
22 gl_CONDITIONAL([GL_COND_OBJ_STAT], [test $REPLACE_STAT = 1])
23 AM_COND_IF([GL_COND_OBJ_STAT], [
24   case "$host_os" in
25     mingw* | windows*)
26       AC_LIBOBJ([stat-w32])
27       ;;
28   esac
29   gl_PREREQ_STAT
31 gl_SYS_STAT_MODULE_INDICATOR([stat])
33 Makefile.am:
34 if GL_COND_OBJ_STAT
35 lib_SOURCES += stat.c
36 endif
38 Include:
39 <sys/stat.h>
41 License:
42 LGPLv2+
44 Maintainer:
45 Eric Blake