1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-06-15 23:35:50 +00:00
Files
gnulib/modules/stat
T
Bruno Haible cefb3e2171 Recognize the *-*-windows* config triplets introduced on 2023-06-26.
* m4/*.m4: Treat windows* as equivalent to mingw*.
* modules/*: Likewise.
2023-08-17 15:39:25 +02:00

46 lines
785 B
Plaintext

Description:
stat() function: query file information
Files:
lib/stat.c
lib/stat-w32.h
lib/stat-w32.c
m4/stat.m4
Depends-on:
sys_stat
largefile
assert-h [test $REPLACE_STAT = 1]
filename [test $REPLACE_STAT = 1]
malloca [test $REPLACE_STAT = 1]
pathmax [test $REPLACE_STAT = 1]
stat-time [test $REPLACE_STAT = 1]
stdbool [test $REPLACE_STAT = 1]
configure.ac:
gl_FUNC_STAT
gl_CONDITIONAL([GL_COND_OBJ_STAT], [test $REPLACE_STAT = 1])
AM_COND_IF([GL_COND_OBJ_STAT], [
case "$host_os" in
mingw* | windows*)
AC_LIBOBJ([stat-w32])
;;
esac
gl_PREREQ_STAT
])
gl_SYS_STAT_MODULE_INDICATOR([stat])
Makefile.am:
if GL_COND_OBJ_STAT
lib_SOURCES += stat.c
endif
Include:
<sys/stat.h>
License:
LGPLv2+
Maintainer:
Eric Blake