mirror of
git://git.sv.gnu.org/autoconf
synced 2025-02-17 14:01:27 +08:00
* lib/autoscan/functions, lib/autoscan/headers,
* lib/autoscan/identifiers, lib/autoscan/makevars, * lib/autoscan/programs: Make the `kind' explicit, i.e., each `functions' line is now prefixed with `function:'. * bin/autoscan.in (&init_tables): Adjust.
This commit is contained in:
parent
0d44ad22d0
commit
d8a2311821
@ -1,3 +1,11 @@
|
||||
2002-09-28 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* lib/autoscan/functions, lib/autoscan/headers,
|
||||
* lib/autoscan/identifiers, lib/autoscan/makevars,
|
||||
* lib/autoscan/programs: Make the `kind' explicit, i.e., each
|
||||
`functions' line is now prefixed with `function:'.
|
||||
* bin/autoscan.in (&init_tables): Adjust.
|
||||
|
||||
2002-09-28 Akim Demaille <akim@epita.fr>
|
||||
|
||||
From now on, autoscan files must always map a macro name to a
|
||||
|
@ -164,16 +164,17 @@ sub init_tables ()
|
||||
next
|
||||
if /^\s*$/ || /^\s*\#/;
|
||||
|
||||
# '<word> <macro invocation>' or...
|
||||
# '<word> warn: <message>'.
|
||||
if (/^(\S+)\s+(\S.*)$/)
|
||||
# '<kind>: <word> <macro invocation>' or...
|
||||
# '<kind>: <word> warn: <message>'.
|
||||
if (/^(\S+):\s+(\S+)\s+(\S.*)$/)
|
||||
{
|
||||
my $word = $1;
|
||||
my $macro = $2;
|
||||
my ($mkind, $word, $macro) = ($1, $2, $3);
|
||||
die "$mkind:$kind\n"
|
||||
unless "${mkind}s" eq $kind;
|
||||
# The default macro must be explicitly listed for words
|
||||
# which have a specific macros. This allows to enforce
|
||||
# consistency checks.
|
||||
if (!defined $2 && exists $macro{$kind}{$word})
|
||||
if (!defined $word && exists $macro{$kind}{$word})
|
||||
{
|
||||
warn ("$file:$.: "
|
||||
. "ignoring implicit call to the generic macro for $word\n");
|
||||
|
@ -18,157 +18,157 @@
|
||||
# 02111-1307, USA.
|
||||
|
||||
# Ones that have their own macros.
|
||||
alloca AC_FUNC_ALLOCA
|
||||
bcmp AC_HEADER_STDC
|
||||
bcopy AC_HEADER_STDC
|
||||
bzero AC_CHECK_FUNCS
|
||||
bzero AC_HEADER_STDC
|
||||
chown AC_FUNC_CHOWN
|
||||
dcgettext AM_GNU_GETTEXT
|
||||
error AC_FUNC_ERROR_AT_LINE
|
||||
error_at_line AC_FUNC_ERROR_AT_LINE
|
||||
fnmatch AC_FUNC_FNMATCH
|
||||
fork AC_FUNC_FORK
|
||||
fseeko AC_FUNC_FSEEKO
|
||||
ftello AC_FUNC_FSEEKO
|
||||
getgroups AC_FUNC_GETGROUPS
|
||||
getloadavg AC_FUNC_GETLOADAVG
|
||||
getpgrp AC_FUNC_GETPGRP
|
||||
index AC_HEADER_STDC
|
||||
ioctl AC_PROG_GCC_TRADITIONAL
|
||||
lstat AC_FUNC_LSTAT
|
||||
major AC_HEADER_MAJOR
|
||||
makedev AC_HEADER_MAJOR
|
||||
malloc AC_FUNC_MALLOC
|
||||
mbrtowc AC_FUNC_MBRTOWC
|
||||
memchr AC_CHECK_FUNCS
|
||||
memchr AC_HEADER_STDC
|
||||
memcmp AC_FUNC_MEMCMP
|
||||
memcpy AC_HEADER_STDC
|
||||
memmove AC_CHECK_FUNCS
|
||||
memmove AC_HEADER_STDC
|
||||
memset AC_CHECK_FUNCS
|
||||
memset AC_HEADER_STDC
|
||||
minor AC_HEADER_MAJOR
|
||||
mktime AC_FUNC_MKTIME
|
||||
mmap AC_FUNC_MMAP
|
||||
obstack_init AC_FUNC_OBSTACK
|
||||
realloc AC_FUNC_REALLOC
|
||||
rindex AC_HEADER_STDC
|
||||
setpgrp AC_FUNC_SETPGRP
|
||||
setvbuf AC_FUNC_SETVBUF_REVERSED
|
||||
signal AC_TYPE_SIGNAL
|
||||
stat AC_FUNC_STAT
|
||||
strcoll AC_FUNC_STRCOLL
|
||||
strerror_r AC_FUNC_STRERROR_R
|
||||
strftime AC_FUNC_STRFTIME
|
||||
strnlen AC_FUNC_STRNLEN
|
||||
strtod AC_FUNC_STRTOD
|
||||
utime AC_CHECK_FUNCS
|
||||
utime AC_FUNC_UTIME_NULL
|
||||
vfork AC_FUNC_FORK
|
||||
vfprintf AC_FUNC_VPRINTF
|
||||
vprintf AC_FUNC_VPRINTF
|
||||
vsprintf AC_FUNC_VPRINTF
|
||||
wait3 AC_FUNC_WAIT3
|
||||
function: alloca AC_FUNC_ALLOCA
|
||||
function: bcmp AC_HEADER_STDC
|
||||
function: bcopy AC_HEADER_STDC
|
||||
function: bzero AC_CHECK_FUNCS
|
||||
function: bzero AC_HEADER_STDC
|
||||
function: chown AC_FUNC_CHOWN
|
||||
function: dcgettext AM_GNU_GETTEXT
|
||||
function: error AC_FUNC_ERROR_AT_LINE
|
||||
function: error_at_line AC_FUNC_ERROR_AT_LINE
|
||||
function: fnmatch AC_FUNC_FNMATCH
|
||||
function: fork AC_FUNC_FORK
|
||||
function: fseeko AC_FUNC_FSEEKO
|
||||
function: ftello AC_FUNC_FSEEKO
|
||||
function: getgroups AC_FUNC_GETGROUPS
|
||||
function: getloadavg AC_FUNC_GETLOADAVG
|
||||
function: getpgrp AC_FUNC_GETPGRP
|
||||
function: index AC_HEADER_STDC
|
||||
function: ioctl AC_PROG_GCC_TRADITIONAL
|
||||
function: lstat AC_FUNC_LSTAT
|
||||
function: major AC_HEADER_MAJOR
|
||||
function: makedev AC_HEADER_MAJOR
|
||||
function: malloc AC_FUNC_MALLOC
|
||||
function: mbrtowc AC_FUNC_MBRTOWC
|
||||
function: memchr AC_CHECK_FUNCS
|
||||
function: memchr AC_HEADER_STDC
|
||||
function: memcmp AC_FUNC_MEMCMP
|
||||
function: memcpy AC_HEADER_STDC
|
||||
function: memmove AC_CHECK_FUNCS
|
||||
function: memmove AC_HEADER_STDC
|
||||
function: memset AC_CHECK_FUNCS
|
||||
function: memset AC_HEADER_STDC
|
||||
function: minor AC_HEADER_MAJOR
|
||||
function: mktime AC_FUNC_MKTIME
|
||||
function: mmap AC_FUNC_MMAP
|
||||
function: obstack_init AC_FUNC_OBSTACK
|
||||
function: realloc AC_FUNC_REALLOC
|
||||
function: rindex AC_HEADER_STDC
|
||||
function: setpgrp AC_FUNC_SETPGRP
|
||||
function: setvbuf AC_FUNC_SETVBUF_REVERSED
|
||||
function: signal AC_TYPE_SIGNAL
|
||||
function: stat AC_FUNC_STAT
|
||||
function: strcoll AC_FUNC_STRCOLL
|
||||
function: strerror_r AC_FUNC_STRERROR_R
|
||||
function: strftime AC_FUNC_STRFTIME
|
||||
function: strnlen AC_FUNC_STRNLEN
|
||||
function: strtod AC_FUNC_STRTOD
|
||||
function: utime AC_CHECK_FUNCS
|
||||
function: utime AC_FUNC_UTIME_NULL
|
||||
function: vfork AC_FUNC_FORK
|
||||
function: vfprintf AC_FUNC_VPRINTF
|
||||
function: vprintf AC_FUNC_VPRINTF
|
||||
function: vsprintf AC_FUNC_VPRINTF
|
||||
function: wait3 AC_FUNC_WAIT3
|
||||
|
||||
# Functions we should no longer use.
|
||||
getwd warn: getwd is deprecated, use getcwd instead
|
||||
function: getwd warn: getwd is deprecated, use getcwd instead
|
||||
|
||||
# Others, checked with AC_CHECK_FUNCS.
|
||||
__argz_count AC_CHECK_FUNCS
|
||||
__argz_next AC_CHECK_FUNCS
|
||||
__argz_stringify AC_CHECK_FUNCS
|
||||
__fpending AC_CHECK_FUNCS
|
||||
acl AC_CHECK_FUNCS
|
||||
alarm AC_CHECK_FUNCS
|
||||
atexit AC_CHECK_FUNCS
|
||||
btowc AC_CHECK_FUNCS
|
||||
clock_gettime AC_CHECK_FUNCS
|
||||
doprnt AC_CHECK_FUNCS
|
||||
dup2 AC_CHECK_FUNCS
|
||||
endgrent AC_CHECK_FUNCS
|
||||
endpwent AC_CHECK_FUNCS
|
||||
euidaccess AC_CHECK_FUNCS
|
||||
fchdir AC_CHECK_FUNCS
|
||||
fdatasync AC_CHECK_FUNCS
|
||||
fesetround AC_CHECK_FUNCS
|
||||
floor AC_CHECK_FUNCS
|
||||
fs_stat_dev AC_CHECK_FUNCS
|
||||
ftime AC_CHECK_FUNCS
|
||||
ftruncate AC_CHECK_FUNCS
|
||||
getcwd AC_CHECK_FUNCS
|
||||
getdelim AC_CHECK_FUNCS
|
||||
gethostbyaddr AC_CHECK_FUNCS
|
||||
gethostbyname AC_CHECK_FUNCS
|
||||
gethostname AC_CHECK_FUNCS
|
||||
gethrtime AC_CHECK_FUNCS
|
||||
getmntent AC_CHECK_FUNCS
|
||||
getmntinfo AC_CHECK_FUNCS
|
||||
getpagesize AC_CHECK_FUNCS
|
||||
getpass AC_CHECK_FUNCS
|
||||
getspnam AC_CHECK_FUNCS
|
||||
gettimeofday AC_CHECK_FUNCS
|
||||
getusershell AC_CHECK_FUNCS
|
||||
hasmntopt AC_CHECK_FUNCS
|
||||
inet_ntoa AC_CHECK_FUNCS
|
||||
isascii AC_CHECK_FUNCS
|
||||
iswprint AC_CHECK_FUNCS
|
||||
lchown AC_CHECK_FUNCS
|
||||
listmntent AC_CHECK_FUNCS
|
||||
localeconv AC_CHECK_FUNCS
|
||||
localtime_r AC_CHECK_FUNCS
|
||||
mblen AC_CHECK_FUNCS
|
||||
mbrlen AC_CHECK_FUNCS
|
||||
mempcpy AC_CHECK_FUNCS
|
||||
mkdir AC_CHECK_FUNCS
|
||||
mkfifo AC_CHECK_FUNCS
|
||||
modf AC_CHECK_FUNCS
|
||||
munmap AC_CHECK_FUNCS
|
||||
next_dev AC_CHECK_FUNCS
|
||||
nl_langinfo AC_CHECK_FUNCS
|
||||
pathconf AC_CHECK_FUNCS
|
||||
pow AC_CHECK_FUNCS
|
||||
pstat_getdynamic AC_CHECK_FUNCS
|
||||
putenv AC_CHECK_FUNCS
|
||||
re_comp AC_CHECK_FUNCS
|
||||
realpath AC_CHECK_FUNCS
|
||||
regcmp AC_CHECK_FUNCS
|
||||
regcomp AC_CHECK_FUNCS
|
||||
resolvepath AC_CHECK_FUNCS
|
||||
rint AC_CHECK_FUNCS
|
||||
rmdir AC_CHECK_FUNCS
|
||||
rpmatch AC_CHECK_FUNCS
|
||||
select AC_CHECK_FUNCS
|
||||
setenv AC_CHECK_FUNCS
|
||||
sethostname AC_CHECK_FUNCS
|
||||
setlocale AC_CHECK_FUNCS
|
||||
socket AC_CHECK_FUNCS
|
||||
sqrt AC_CHECK_FUNCS
|
||||
stime AC_CHECK_FUNCS
|
||||
stpcpy AC_CHECK_FUNCS
|
||||
strcasecmp AC_CHECK_FUNCS
|
||||
strchr AC_CHECK_FUNCS
|
||||
strcspn AC_CHECK_FUNCS
|
||||
strdup AC_CHECK_FUNCS
|
||||
strerror AC_CHECK_FUNCS
|
||||
strncasecmp AC_CHECK_FUNCS
|
||||
strndup AC_CHECK_FUNCS
|
||||
strpbrk AC_CHECK_FUNCS
|
||||
strrchr AC_CHECK_FUNCS
|
||||
strspn AC_CHECK_FUNCS
|
||||
strstr AC_CHECK_FUNCS
|
||||
strtol AC_CHECK_FUNCS
|
||||
strtoul AC_CHECK_FUNCS
|
||||
strtoull AC_CHECK_FUNCS
|
||||
strtoumax AC_CHECK_FUNCS
|
||||
strverscmp AC_CHECK_FUNCS
|
||||
sysinfo AC_CHECK_FUNCS
|
||||
tzset AC_CHECK_FUNCS
|
||||
uname AC_CHECK_FUNCS
|
||||
utmpname AC_CHECK_FUNCS
|
||||
utmpxname AC_CHECK_FUNCS
|
||||
wcwidth AC_CHECK_FUNCS
|
||||
function: __argz_count AC_CHECK_FUNCS
|
||||
function: __argz_next AC_CHECK_FUNCS
|
||||
function: __argz_stringify AC_CHECK_FUNCS
|
||||
function: __fpending AC_CHECK_FUNCS
|
||||
function: acl AC_CHECK_FUNCS
|
||||
function: alarm AC_CHECK_FUNCS
|
||||
function: atexit AC_CHECK_FUNCS
|
||||
function: btowc AC_CHECK_FUNCS
|
||||
function: clock_gettime AC_CHECK_FUNCS
|
||||
function: doprnt AC_CHECK_FUNCS
|
||||
function: dup2 AC_CHECK_FUNCS
|
||||
function: endgrent AC_CHECK_FUNCS
|
||||
function: endpwent AC_CHECK_FUNCS
|
||||
function: euidaccess AC_CHECK_FUNCS
|
||||
function: fchdir AC_CHECK_FUNCS
|
||||
function: fdatasync AC_CHECK_FUNCS
|
||||
function: fesetround AC_CHECK_FUNCS
|
||||
function: floor AC_CHECK_FUNCS
|
||||
function: fs_stat_dev AC_CHECK_FUNCS
|
||||
function: ftime AC_CHECK_FUNCS
|
||||
function: ftruncate AC_CHECK_FUNCS
|
||||
function: getcwd AC_CHECK_FUNCS
|
||||
function: getdelim AC_CHECK_FUNCS
|
||||
function: gethostbyaddr AC_CHECK_FUNCS
|
||||
function: gethostbyname AC_CHECK_FUNCS
|
||||
function: gethostname AC_CHECK_FUNCS
|
||||
function: gethrtime AC_CHECK_FUNCS
|
||||
function: getmntent AC_CHECK_FUNCS
|
||||
function: getmntinfo AC_CHECK_FUNCS
|
||||
function: getpagesize AC_CHECK_FUNCS
|
||||
function: getpass AC_CHECK_FUNCS
|
||||
function: getspnam AC_CHECK_FUNCS
|
||||
function: gettimeofday AC_CHECK_FUNCS
|
||||
function: getusershell AC_CHECK_FUNCS
|
||||
function: hasmntopt AC_CHECK_FUNCS
|
||||
function: inet_ntoa AC_CHECK_FUNCS
|
||||
function: isascii AC_CHECK_FUNCS
|
||||
function: iswprint AC_CHECK_FUNCS
|
||||
function: lchown AC_CHECK_FUNCS
|
||||
function: listmntent AC_CHECK_FUNCS
|
||||
function: localeconv AC_CHECK_FUNCS
|
||||
function: localtime_r AC_CHECK_FUNCS
|
||||
function: mblen AC_CHECK_FUNCS
|
||||
function: mbrlen AC_CHECK_FUNCS
|
||||
function: mempcpy AC_CHECK_FUNCS
|
||||
function: mkdir AC_CHECK_FUNCS
|
||||
function: mkfifo AC_CHECK_FUNCS
|
||||
function: modf AC_CHECK_FUNCS
|
||||
function: munmap AC_CHECK_FUNCS
|
||||
function: next_dev AC_CHECK_FUNCS
|
||||
function: nl_langinfo AC_CHECK_FUNCS
|
||||
function: pathconf AC_CHECK_FUNCS
|
||||
function: pow AC_CHECK_FUNCS
|
||||
function: pstat_getdynamic AC_CHECK_FUNCS
|
||||
function: putenv AC_CHECK_FUNCS
|
||||
function: re_comp AC_CHECK_FUNCS
|
||||
function: realpath AC_CHECK_FUNCS
|
||||
function: regcmp AC_CHECK_FUNCS
|
||||
function: regcomp AC_CHECK_FUNCS
|
||||
function: resolvepath AC_CHECK_FUNCS
|
||||
function: rint AC_CHECK_FUNCS
|
||||
function: rmdir AC_CHECK_FUNCS
|
||||
function: rpmatch AC_CHECK_FUNCS
|
||||
function: select AC_CHECK_FUNCS
|
||||
function: setenv AC_CHECK_FUNCS
|
||||
function: sethostname AC_CHECK_FUNCS
|
||||
function: setlocale AC_CHECK_FUNCS
|
||||
function: socket AC_CHECK_FUNCS
|
||||
function: sqrt AC_CHECK_FUNCS
|
||||
function: stime AC_CHECK_FUNCS
|
||||
function: stpcpy AC_CHECK_FUNCS
|
||||
function: strcasecmp AC_CHECK_FUNCS
|
||||
function: strchr AC_CHECK_FUNCS
|
||||
function: strcspn AC_CHECK_FUNCS
|
||||
function: strdup AC_CHECK_FUNCS
|
||||
function: strerror AC_CHECK_FUNCS
|
||||
function: strncasecmp AC_CHECK_FUNCS
|
||||
function: strndup AC_CHECK_FUNCS
|
||||
function: strpbrk AC_CHECK_FUNCS
|
||||
function: strrchr AC_CHECK_FUNCS
|
||||
function: strspn AC_CHECK_FUNCS
|
||||
function: strstr AC_CHECK_FUNCS
|
||||
function: strtol AC_CHECK_FUNCS
|
||||
function: strtoul AC_CHECK_FUNCS
|
||||
function: strtoull AC_CHECK_FUNCS
|
||||
function: strtoumax AC_CHECK_FUNCS
|
||||
function: strverscmp AC_CHECK_FUNCS
|
||||
function: sysinfo AC_CHECK_FUNCS
|
||||
function: tzset AC_CHECK_FUNCS
|
||||
function: uname AC_CHECK_FUNCS
|
||||
function: utmpname AC_CHECK_FUNCS
|
||||
function: utmpxname AC_CHECK_FUNCS
|
||||
function: wcwidth AC_CHECK_FUNCS
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
|
@ -21,80 +21,81 @@
|
||||
# unclear to me --akim.
|
||||
|
||||
# Ones that have their own macros.
|
||||
X11/Xlib.h AC_PATH_X
|
||||
alloca.h AC_FUNC_ALLOCA
|
||||
dirent.h AC_HEADER_DIRENT
|
||||
float.h AC_HEADER_STDC
|
||||
float.h AC_CHECK_HEADERS
|
||||
ndir.h AC_HEADER_DIRENT
|
||||
stdarg.h AC_HEADER_STDC
|
||||
stddef.h AC_HEADER_STDC
|
||||
stddef.h AC_CHECK_HEADERS
|
||||
stdlib.h AC_HEADER_STDC
|
||||
stdlib.h AC_CHECK_HEADERS
|
||||
string.h AC_HEADER_STDC
|
||||
string.h AC_CHECK_HEADERS
|
||||
sys/dir.h AC_HEADER_DIRENT
|
||||
sys/mkdev.h AC_HEADER_MAJOR
|
||||
sys/ndir.h AC_HEADER_DIRENT
|
||||
sys/wait.h AC_HEADER_SYS_WAIT
|
||||
header: X11/Xlib.h AC_PATH_X
|
||||
header: alloca.h AC_FUNC_ALLOCA
|
||||
header: dirent.h AC_HEADER_DIRENT
|
||||
header: float.h AC_HEADER_STDC
|
||||
header: float.h AC_CHECK_HEADERS
|
||||
header: ndir.h AC_HEADER_DIRENT
|
||||
header: stdarg.h AC_HEADER_STDC
|
||||
header: stddef.h AC_HEADER_STDC
|
||||
header: stddef.h AC_CHECK_HEADERS
|
||||
header: stdlib.h AC_HEADER_STDC
|
||||
header: stdlib.h AC_CHECK_HEADERS
|
||||
header: string.h AC_HEADER_STDC
|
||||
header: string.h AC_CHECK_HEADERS
|
||||
header: sys/dir.h AC_HEADER_DIRENT
|
||||
header: sys/mkdev.h AC_HEADER_MAJOR
|
||||
header: sys/ndir.h AC_HEADER_DIRENT
|
||||
header: sys/wait.h AC_HEADER_SYS_WAIT
|
||||
|
||||
# Others, checked with AC_CHECK_HEADERS.
|
||||
OS.h AC_CHECK_HEADERS
|
||||
argz.h AC_CHECK_HEADERS
|
||||
arpa/inet.h AC_CHECK_HEADERS
|
||||
header: OS.h AC_CHECK_HEADERS
|
||||
header: argz.h AC_CHECK_HEADERS
|
||||
header: arpa/inet.h AC_CHECK_HEADERS
|
||||
|
||||
# errno.h is portable.
|
||||
fcntl.h AC_CHECK_HEADERS
|
||||
fenv.h AC_CHECK_HEADERS
|
||||
fs_info.h AC_CHECK_HEADERS
|
||||
inttypes.h AC_CHECK_HEADERS
|
||||
langinfo.h AC_CHECK_HEADERS
|
||||
libintl.h AC_CHECK_HEADERS
|
||||
limits.h AC_CHECK_HEADERS
|
||||
locale.h AC_CHECK_HEADERS
|
||||
mach/mach.h AC_CHECK_HEADERS
|
||||
malloc.h AC_CHECK_HEADERS
|
||||
memory.h AC_CHECK_HEADERS
|
||||
mntent.h AC_CHECK_HEADERS
|
||||
mnttab.h AC_CHECK_HEADERS
|
||||
netdb.h AC_CHECK_HEADERS
|
||||
netinet/in.h AC_CHECK_HEADERS
|
||||
nl_types.h AC_CHECK_HEADERS
|
||||
nlist.h AC_CHECK_HEADERS
|
||||
paths.h AC_CHECK_HEADERS
|
||||
sgtty.h AC_CHECK_HEADERS
|
||||
shadow.h AC_CHECK_HEADERS
|
||||
stdint.h AC_CHECK_HEADERS
|
||||
stdio_ext.h AC_CHECK_HEADERS
|
||||
strings.h AC_CHECK_HEADERS
|
||||
sys/acl.h AC_CHECK_HEADERS
|
||||
sys/file.h AC_CHECK_HEADERS
|
||||
sys/filsys.h AC_CHECK_HEADERS
|
||||
sys/fs/s5param.h AC_CHECK_HEADERS
|
||||
sys/fs_types.h AC_CHECK_HEADERS
|
||||
sys/fstyp.h AC_CHECK_HEADERS
|
||||
sys/ioctl.h AC_CHECK_HEADERS
|
||||
sys/mntent.h AC_CHECK_HEADERS
|
||||
sys/mount.h AC_CHECK_HEADERS
|
||||
sys/param.h AC_CHECK_HEADERS
|
||||
sys/socket.h AC_CHECK_HEADERS
|
||||
sys/statfs.h AC_CHECK_HEADERS
|
||||
sys/statvfs.h AC_CHECK_HEADERS
|
||||
sys/systeminfo.h AC_CHECK_HEADERS
|
||||
sys/time.h AC_CHECK_HEADERS
|
||||
sys/timeb.h AC_CHECK_HEADERS
|
||||
sys/vfs.h AC_CHECK_HEADERS
|
||||
sys/window.h AC_CHECK_HEADERS
|
||||
syslog.h AC_CHECK_HEADERS
|
||||
termio.h AC_CHECK_HEADERS
|
||||
termios.h AC_CHECK_HEADERS
|
||||
unistd.h AC_CHECK_HEADERS
|
||||
utime.h AC_CHECK_HEADERS
|
||||
utmp.h AC_CHECK_HEADERS
|
||||
utmpx.h AC_CHECK_HEADERS
|
||||
values.h AC_CHECK_HEADERS
|
||||
wchar.h AC_CHECK_HEADERS
|
||||
wctype.h AC_CHECK_HEADERS
|
||||
header: fcntl.h AC_CHECK_HEADERS
|
||||
header: fenv.h AC_CHECK_HEADERS
|
||||
header: fs_info.h AC_CHECK_HEADERS
|
||||
header: inttypes.h AC_CHECK_HEADERS
|
||||
header: langinfo.h AC_CHECK_HEADERS
|
||||
header: libintl.h AC_CHECK_HEADERS
|
||||
header: limits.h AC_CHECK_HEADERS
|
||||
header: locale.h AC_CHECK_HEADERS
|
||||
header: mach/mach.h AC_CHECK_HEADERS
|
||||
header: malloc.h AC_CHECK_HEADERS
|
||||
header: memory.h AC_CHECK_HEADERS
|
||||
header: mntent.h AC_CHECK_HEADERS
|
||||
header: mnttab.h AC_CHECK_HEADERS
|
||||
header: netdb.h AC_CHECK_HEADERS
|
||||
header: netinet/in.h AC_CHECK_HEADERS
|
||||
header: nl_types.h AC_CHECK_HEADERS
|
||||
header: nlist.h AC_CHECK_HEADERS
|
||||
header: paths.h AC_CHECK_HEADERS
|
||||
header: sgtty.h AC_CHECK_HEADERS
|
||||
header: shadow.h AC_CHECK_HEADERS
|
||||
header: stdint.h AC_CHECK_HEADERS
|
||||
header: stdio_ext.h AC_CHECK_HEADERS
|
||||
header: strings.h AC_CHECK_HEADERS
|
||||
header: sys/acl.h AC_CHECK_HEADERS
|
||||
header: sys/file.h AC_CHECK_HEADERS
|
||||
header: sys/filsys.h AC_CHECK_HEADERS
|
||||
header: sys/fs/s5param.h AC_CHECK_HEADERS
|
||||
header: sys/fs_types.h AC_CHECK_HEADERS
|
||||
header: sys/fstyp.h AC_CHECK_HEADERS
|
||||
header: sys/ioctl.h AC_CHECK_HEADERS
|
||||
header: sys/mntent.h AC_CHECK_HEADERS
|
||||
header: sys/mount.h AC_CHECK_HEADERS
|
||||
header: sys/param.h AC_CHECK_HEADERS
|
||||
header: sys/socket.h AC_CHECK_HEADERS
|
||||
header: sys/statfs.h AC_CHECK_HEADERS
|
||||
header: sys/statvfs.h AC_CHECK_HEADERS
|
||||
header: sys/systeminfo.h AC_CHECK_HEADERS
|
||||
header: sys/time.h AC_CHECK_HEADERS
|
||||
header: sys/timeb.h AC_CHECK_HEADERS
|
||||
header: sys/vfs.h AC_CHECK_HEADERS
|
||||
header: sys/window.h AC_CHECK_HEADERS
|
||||
header: syslog.h AC_CHECK_HEADERS
|
||||
header: termio.h AC_CHECK_HEADERS
|
||||
header: termios.h AC_CHECK_HEADERS
|
||||
header: unistd.h AC_CHECK_HEADERS
|
||||
header: utime.h AC_CHECK_HEADERS
|
||||
header: utmp.h AC_CHECK_HEADERS
|
||||
header: utmpx.h AC_CHECK_HEADERS
|
||||
header: values.h AC_CHECK_HEADERS
|
||||
header: wchar.h AC_CHECK_HEADERS
|
||||
header: wctype.h AC_CHECK_HEADERS
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
|
@ -20,38 +20,38 @@
|
||||
# 02111-1307, USA.
|
||||
|
||||
# Keywords.
|
||||
const AC_C_CONST
|
||||
inline AC_C_INLINE
|
||||
identifier: const AC_C_CONST
|
||||
identifier: inline AC_C_INLINE
|
||||
|
||||
# Variables.
|
||||
sys_siglist AC_DECL_SYS_SIGLIST
|
||||
identifier: 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
|
||||
identifier: gid_t AC_TYPE_UID_T
|
||||
identifier: mode_t AC_TYPE_MODE_T
|
||||
identifier: obstack AC_FUNC_OBSTACK
|
||||
identifier: off_t AC_TYPE_OFF_T
|
||||
identifier: pid_t AC_TYPE_PID_T
|
||||
identifier: ptrdiff_t AC_CHECK_TYPES
|
||||
identifier: size_t AC_TYPE_SIZE_T
|
||||
identifier: timeval AC_HEADER_TIME
|
||||
identifier: tm AC_STRUCT_TM
|
||||
identifier: 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
|
||||
identifier: S_ISBLK AC_HEADER_STAT
|
||||
identifier: S_ISCHR AC_HEADER_STAT
|
||||
identifier: S_ISDIR AC_HEADER_STAT
|
||||
identifier: S_ISFIFO AC_HEADER_STAT
|
||||
identifier: S_ISLNK AC_HEADER_STAT
|
||||
identifier: S_ISREG AC_HEADER_STAT
|
||||
identifier: 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
|
||||
identifier: st_blksize AC_CHECK_MEMBERS([struct stat.st_blksize])
|
||||
identifier: st_blocks AC_STRUCT_ST_BLOCKS
|
||||
identifier: st_rdev AC_CHECK_MEMBERS([struct stat.st_rdev])
|
||||
identifier: tm_zone AC_STRUCT_TIMEZONE
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
|
@ -1,5 +1,5 @@
|
||||
# acmakevars -- autoscan's mapping from Make variables to Autoconf macros
|
||||
# Copyright 1992, 1993, 1994, 1996, 1999, 2000, 2001
|
||||
# Copyright (C) 1992, 1993, 1994, 1996, 1999, 2000, 2001, 2002
|
||||
# Free Software Foundation, Inc.
|
||||
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
@ -17,17 +17,17 @@
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
# 02111-1307, USA.
|
||||
|
||||
LN AC_PROG_LN_S
|
||||
AWK AC_PROG_AWK
|
||||
CC AC_PROG_CC
|
||||
CPP AC_PROG_CPP
|
||||
CXX AC_PROG_CXX
|
||||
INSTALL AC_PROG_INSTALL
|
||||
LEX AC_PROG_LEX
|
||||
RANLIB AC_PROG_RANLIB
|
||||
YACC AC_PROG_YACC
|
||||
BISON AC_PROG_YACC
|
||||
MAKE AC_PROG_MAKE_SET
|
||||
makevar: AWK AC_PROG_AWK
|
||||
makevar: BISON AC_PROG_YACC
|
||||
makevar: CC AC_PROG_CC
|
||||
makevar: CPP AC_PROG_CPP
|
||||
makevar: CXX AC_PROG_CXX
|
||||
makevar: INSTALL AC_PROG_INSTALL
|
||||
makevar: LEX AC_PROG_LEX
|
||||
makevar: LN AC_PROG_LN_S
|
||||
makevar: MAKE AC_PROG_MAKE_SET
|
||||
makevar: RANLIB AC_PROG_RANLIB
|
||||
makevar: YACC AC_PROG_YACC
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
|
@ -17,25 +17,25 @@
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
# 02111-1307, USA.
|
||||
|
||||
ln AC_PROG_LN_S
|
||||
awk AC_PROG_AWK
|
||||
nawk AC_PROG_AWK
|
||||
gawk AC_PROG_AWK
|
||||
mawk AC_PROG_AWK
|
||||
cc AC_PROG_CC
|
||||
gcc AC_PROG_CC
|
||||
cpp AC_PROG_CPP
|
||||
CC AC_PROG_CXX
|
||||
c++ AC_PROG_CXX
|
||||
g++ AC_PROG_CXX
|
||||
install AC_PROG_INSTALL
|
||||
lex AC_PROG_LEX
|
||||
flex AC_PROG_LEX
|
||||
ranlib AC_PROG_RANLIB
|
||||
yacc AC_PROG_YACC
|
||||
byacc AC_PROG_YACC
|
||||
bison AC_PROG_YACC
|
||||
make AC_PROG_MAKE_SET
|
||||
program: CC AC_PROG_CXX
|
||||
program: awk AC_PROG_AWK
|
||||
program: bison AC_PROG_YACC
|
||||
program: byacc AC_PROG_YACC
|
||||
program: c++ AC_PROG_CXX
|
||||
program: cc AC_PROG_CC
|
||||
program: cpp AC_PROG_CPP
|
||||
program: flex AC_PROG_LEX
|
||||
program: g++ AC_PROG_CXX
|
||||
program: gawk AC_PROG_AWK
|
||||
program: gcc AC_PROG_CC
|
||||
program: install AC_PROG_INSTALL
|
||||
program: lex AC_PROG_LEX
|
||||
program: ln AC_PROG_LN_S
|
||||
program: make AC_PROG_MAKE_SET
|
||||
program: mawk AC_PROG_AWK
|
||||
program: nawk AC_PROG_AWK
|
||||
program: ranlib AC_PROG_RANLIB
|
||||
program: yacc AC_PROG_YACC
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
|
Loading…
Reference in New Issue
Block a user