- (tim) [configure.ac] Add AC_REVISION. Add sys/time.h to lastlog.h test
for Solaris. OK dtucker@.
This commit is contained in:
parent
fd80ddcb23
commit
0daad78fab
|
@ -1,3 +1,7 @@
|
||||||
|
20060205
|
||||||
|
- (tim) [configure.ac] Add AC_REVISION. Add sys/time.h to lastlog.h test
|
||||||
|
for Solaris. OK dtucker@.
|
||||||
|
|
||||||
20060203
|
20060203
|
||||||
- (tim) [configure.ac] test for egrep (AC_PROG_EGREP) before first
|
- (tim) [configure.ac] test for egrep (AC_PROG_EGREP) before first
|
||||||
AC_CHECK_HEADERS test. Without it, if AC_CHECK_HEADERS is first run
|
AC_CHECK_HEADERS test. Without it, if AC_CHECK_HEADERS is first run
|
||||||
|
@ -3830,4 +3834,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.4120 2006/02/03 03:11:56 tim Exp $
|
$Id: ChangeLog,v 1.4121 2006/02/05 01:33:55 tim Exp $
|
||||||
|
|
11
configure.ac
11
configure.ac
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.ac,v 1.324 2006/02/03 03:11:56 tim Exp $
|
# $Id: configure.ac,v 1.325 2006/02/05 01:33:55 tim Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999-2004 Damien Miller
|
# Copyright (c) 1999-2004 Damien Miller
|
||||||
#
|
#
|
||||||
|
@ -15,6 +15,7 @@
|
||||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
|
AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
|
||||||
|
AC_REVISION($Revision: 1.325 $)
|
||||||
AC_CONFIG_SRCDIR([ssh.c])
|
AC_CONFIG_SRCDIR([ssh.c])
|
||||||
|
|
||||||
AC_CONFIG_HEADER(config.h)
|
AC_CONFIG_HEADER(config.h)
|
||||||
|
@ -673,7 +674,6 @@ AC_CHECK_HEADERS( \
|
||||||
glob.h \
|
glob.h \
|
||||||
ia.h \
|
ia.h \
|
||||||
iaf.h \
|
iaf.h \
|
||||||
lastlog.h \
|
|
||||||
limits.h \
|
limits.h \
|
||||||
login.h \
|
login.h \
|
||||||
login_cap.h \
|
login_cap.h \
|
||||||
|
@ -724,6 +724,13 @@ AC_CHECK_HEADERS( \
|
||||||
vis.h \
|
vis.h \
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# lastlog.h requires sys/time.h to be included first on Solaris
|
||||||
|
AC_CHECK_HEADERS(lastlog.h, [], [], [
|
||||||
|
#ifdef HAVE_SYS_TIME_H
|
||||||
|
# include <sys/time.h>
|
||||||
|
#endif
|
||||||
|
])
|
||||||
|
|
||||||
# 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, [], [], [
|
||||||
#ifdef HAVE_SYS_STREAM_H
|
#ifdef HAVE_SYS_STREAM_H
|
||||||
|
|
Loading…
Reference in New Issue