- (dtucker) [configure.ac] For AC_CHECK_HEADERS() and AC_CHECK_FUNCS() have
one entry per line to make it easier to merge changes. ok djm@
This commit is contained in:
parent
2be1cbb7be
commit
0c9653f57e
|
@ -1,3 +1,7 @@
|
||||||
|
20050528
|
||||||
|
- (dtucker) [configure.ac] For AC_CHECK_HEADERS() and AC_CHECK_FUNCS() have
|
||||||
|
one entry per line to make it easier to merge changes. ok djm@
|
||||||
|
|
||||||
20050527
|
20050527
|
||||||
- (djm) [defines.h] Use our realpath if we have to define PATH_MAX, spotted by
|
- (djm) [defines.h] Use our realpath if we have to define PATH_MAX, spotted by
|
||||||
David Leach; ok dtucker@
|
David Leach; ok dtucker@
|
||||||
|
@ -2615,4 +2619,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3792 2005/05/27 11:13:40 dtucker Exp $
|
$Id: ChangeLog,v 1.3793 2005/05/28 05:58:14 dtucker Exp $
|
||||||
|
|
165
configure.ac
165
configure.ac
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.ac,v 1.263 2005/05/27 11:13:41 dtucker Exp $
|
# $Id: configure.ac,v 1.264 2005/05/28 05:58:14 dtucker Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999-2004 Damien Miller
|
# Copyright (c) 1999-2004 Damien Miller
|
||||||
#
|
#
|
||||||
|
@ -537,17 +537,64 @@ int main(){exit(0);}
|
||||||
[ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
|
[ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
|
||||||
)
|
)
|
||||||
|
|
||||||
# Checks for header files.
|
dnl Checks for header files.
|
||||||
AC_CHECK_HEADERS(bstring.h crypt.h dirent.h endian.h features.h \
|
AC_CHECK_HEADERS( \
|
||||||
floatingpoint.h getopt.h glob.h ia.h lastlog.h limits.h login.h \
|
bstring.h \
|
||||||
login_cap.h maillock.h ndir.h netdb.h netgroup.h \
|
crypt.h \
|
||||||
netinet/in_systm.h pam/pam_appl.h paths.h pty.h readpassphrase.h \
|
dirent.h \
|
||||||
rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
|
endian.h \
|
||||||
strings.h sys/dir.h sys/strtio.h sys/audit.h sys/bitypes.h \
|
features.h \
|
||||||
sys/bsdtty.h sys/cdefs.h sys/mman.h sys/ndir.h sys/prctl.h \
|
floatingpoint.h \
|
||||||
sys/pstat.h sys/select.h sys/stat.h sys/stream.h \
|
getopt.h \
|
||||||
sys/stropts.h sys/sysmacros.h sys/time.h sys/timers.h sys/un.h \
|
glob.h \
|
||||||
time.h tmpdir.h ttyent.h usersec.h util.h utime.h utmp.h utmpx.h vis.h)
|
ia.h \
|
||||||
|
lastlog.h \
|
||||||
|
limits.h \
|
||||||
|
login.h \
|
||||||
|
login_cap.h \
|
||||||
|
maillock.h \
|
||||||
|
ndir.h \
|
||||||
|
netdb.h \
|
||||||
|
netgroup.h \
|
||||||
|
netinet/in_systm.h \
|
||||||
|
pam/pam_appl.h \
|
||||||
|
paths.h \
|
||||||
|
pty.h \
|
||||||
|
readpassphrase.h \
|
||||||
|
rpc/types.h \
|
||||||
|
security/pam_appl.h \
|
||||||
|
shadow.h \
|
||||||
|
stddef.h \
|
||||||
|
stdint.h \
|
||||||
|
strings.h \
|
||||||
|
sys/audit.h \
|
||||||
|
sys/bitypes.h \
|
||||||
|
sys/bsdtty.h \
|
||||||
|
sys/cdefs.h \
|
||||||
|
sys/dir.h \
|
||||||
|
sys/mman.h \
|
||||||
|
sys/ndir.h \
|
||||||
|
sys/prctl.h \
|
||||||
|
sys/pstat.h \
|
||||||
|
sys/select.h \
|
||||||
|
sys/stat.h \
|
||||||
|
sys/stream.h \
|
||||||
|
sys/stropts.h \
|
||||||
|
sys/strtio.h \
|
||||||
|
sys/sysmacros.h \
|
||||||
|
sys/time.h \
|
||||||
|
sys/timers.h \
|
||||||
|
sys/un.h \
|
||||||
|
time.h \
|
||||||
|
tmpdir.h \
|
||||||
|
ttyent.h \
|
||||||
|
usersec.h \
|
||||||
|
util.h \
|
||||||
|
utime.h \
|
||||||
|
utmp.h \
|
||||||
|
utmpx.h \
|
||||||
|
vis.h\
|
||||||
|
)
|
||||||
|
|
||||||
# sys/ptms.h requires sys/stream.h to be included first on Solaris
|
# sys/ptms.h requires sys/stream.h to be included first on Solaris
|
||||||
AC_CHECK_HEADERS(sys/ptms.h, [], [], [
|
AC_CHECK_HEADERS(sys/ptms.h, [], [], [
|
||||||
|
@ -926,19 +973,87 @@ AC_ARG_WITH(audit,
|
||||||
)
|
)
|
||||||
|
|
||||||
dnl Checks for library functions. Please keep in alphabetical order
|
dnl Checks for library functions. Please keep in alphabetical order
|
||||||
AC_CHECK_FUNCS(\
|
AC_CHECK_FUNCS( \
|
||||||
arc4random __b64_ntop b64_ntop __b64_pton b64_pton bcopy \
|
arc4random \
|
||||||
bindresvport_sa clock closefrom dirfd fchdir fchmod fchown \
|
b64_ntop \
|
||||||
freeaddrinfo futimes getaddrinfo getcwd getgrouplist getnameinfo \
|
__b64_ntop \
|
||||||
getopt getpeereid _getpty getrlimit getttyent glob inet_aton \
|
b64_pton \
|
||||||
inet_ntoa inet_ntop innetgr login_getcapbool md5_crypt memmove \
|
__b64_pton \
|
||||||
mkdtemp mmap ngetaddrinfo nsleep ogetaddrinfo openlog_r openpty \
|
bcopy \
|
||||||
pstat prctl readpassphrase realpath recvmsg rresvport_af sendmsg \
|
bindresvport_sa \
|
||||||
setdtablesize setegid setenv seteuid setgroups setlogin setpcred \
|
clock \
|
||||||
setproctitle setregid setreuid setrlimit setsid setvbuf \
|
closefrom \
|
||||||
sigaction sigvec snprintf socketpair strdup strerror \
|
dirfd \
|
||||||
strlcat strlcpy strmode strnvis strtonum strtoul sysconf tcgetpgrp \
|
fchdir \
|
||||||
truncate unsetenv updwtmpx utimes vhangup vsnprintf waitpid \
|
fchmod \
|
||||||
|
fchown \
|
||||||
|
freeaddrinfo \
|
||||||
|
futimes \
|
||||||
|
getaddrinfo \
|
||||||
|
getcwd \
|
||||||
|
getgrouplist \
|
||||||
|
getnameinfo \
|
||||||
|
getopt \
|
||||||
|
getpeereid \
|
||||||
|
_getpty \
|
||||||
|
getrlimit \
|
||||||
|
getttyent \
|
||||||
|
glob \
|
||||||
|
inet_aton \
|
||||||
|
inet_ntoa \
|
||||||
|
inet_ntop \
|
||||||
|
innetgr \
|
||||||
|
login_getcapbool \
|
||||||
|
md5_crypt \
|
||||||
|
memmove \
|
||||||
|
mkdtemp \
|
||||||
|
mmap \
|
||||||
|
ngetaddrinfo \
|
||||||
|
nsleep \
|
||||||
|
ogetaddrinfo \
|
||||||
|
openlog_r \
|
||||||
|
openpty \
|
||||||
|
prctl \
|
||||||
|
pstat \
|
||||||
|
readpassphrase \
|
||||||
|
realpath \
|
||||||
|
recvmsg \
|
||||||
|
rresvport_af \
|
||||||
|
sendmsg \
|
||||||
|
setdtablesize \
|
||||||
|
setegid \
|
||||||
|
setenv \
|
||||||
|
seteuid \
|
||||||
|
setgroups \
|
||||||
|
setlogin \
|
||||||
|
setpcred \
|
||||||
|
setproctitle \
|
||||||
|
setregid \
|
||||||
|
setreuid \
|
||||||
|
setrlimit \
|
||||||
|
setsid \
|
||||||
|
setvbuf \
|
||||||
|
sigaction \
|
||||||
|
sigvec \
|
||||||
|
snprintf \
|
||||||
|
socketpair \
|
||||||
|
strdup \
|
||||||
|
strerror \
|
||||||
|
strlcat \
|
||||||
|
strlcpy \
|
||||||
|
strmode \
|
||||||
|
strnvis \
|
||||||
|
strtonum \
|
||||||
|
strtoul \
|
||||||
|
sysconf \
|
||||||
|
tcgetpgrp \
|
||||||
|
truncate \
|
||||||
|
unsetenv \
|
||||||
|
updwtmpx \
|
||||||
|
utimes \
|
||||||
|
vhangup \
|
||||||
|
vsnprintf \
|
||||||
|
waitpid \
|
||||||
)
|
)
|
||||||
|
|
||||||
# IRIX has a const char return value for gai_strerror()
|
# IRIX has a const char return value for gai_strerror()
|
||||||
|
|
Loading…
Reference in New Issue