mirror of
git://git.sv.gnu.org/autoconf
synced 2024-11-27 01:49:56 +08:00
7173ba3da5
in autoscan tables. Die if there are no spaces at all. (scan_c_file): Use b instead of W so that keywords match at the beginning and the end of the line. (scan_sh_file): Likewise. (scan_makefile): Likewise. Use B to match before `-l'. (output): Suggest AC_CONFIG_HEADER if any C/C++ sources are found. * acidentifiers: Update macros for structure members st_blksize and st_rdev.
36 lines
767 B
Plaintext
36 lines
767 B
Plaintext
# acidentifiers -- identifiers which are not involved in function calls.
|
|
|
|
# Keywords.
|
|
const AC_C_CONST
|
|
inline AC_C_INLINE
|
|
|
|
# Variables.
|
|
sys_siglist AC_DECL_SYS_SIGLIST
|
|
|
|
# Types.
|
|
gid_t AC_TYPE_UID_T
|
|
mode_t AC_TYPE_MODE_T
|
|
obstack AC_FUNC_OBSTACK
|
|
off_t AC_TYPE_OFF_T
|
|
pid_t AC_TYPE_PID_T
|
|
ptrdiff_t AC_CHECK_TYPES
|
|
size_t AC_TYPE_SIZE_T
|
|
timeval AC_HEADER_TIME
|
|
tm AC_STRUCT_TM
|
|
uid_t AC_TYPE_UID_T
|
|
|
|
# Macros.
|
|
S_ISBLK AC_HEADER_STAT
|
|
S_ISCHR AC_HEADER_STAT
|
|
S_ISDIR AC_HEADER_STAT
|
|
S_ISFIFO AC_HEADER_STAT
|
|
S_ISLNK AC_HEADER_STAT
|
|
S_ISREG AC_HEADER_STAT
|
|
S_ISSOCK AC_HEADER_STAT
|
|
|
|
# Members of structures.
|
|
st_blksize AC_CHECK_MEMBERS([struct stat.st_blksize])
|
|
st_blocks AC_STRUCT_ST_BLOCKS
|
|
st_rdev AC_CHECK_MEMBERS([struct stat.st_rdev])
|
|
tm_zone AC_STRUCT_TIMEZONE
|