mirror of git://anongit.mindrot.org/openssh.git
- (dtucker) [configure.ac] Missing comma in AIX section, somehow causes
unrelated platforms to be configured incorrectly.
This commit is contained in:
parent
8fe0794511
commit
04cfbe04aa
|
@ -3,6 +3,8 @@
|
|||
defines.h] Bug #125: Add *EXPERIMENTAL* BSM audit support. Configure
|
||||
--with-audit=bsm to enable. Patch originally from Sun Microsystems,
|
||||
parts by John R. Jackson. ok djm@
|
||||
- (dtucker) [configure.ac] Missing comma in AIX section, somehow causes
|
||||
unrelated platforms to be configured incorrectly.
|
||||
|
||||
20050216
|
||||
- (djm) write seed to temporary file and atomically rename into place;
|
||||
|
@ -2154,4 +2156,4 @@
|
|||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||
|
||||
$Id: ChangeLog,v 1.3660 2005/02/20 10:01:48 dtucker Exp $
|
||||
$Id: ChangeLog,v 1.3661 2005/02/20 12:27:11 dtucker Exp $
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: configure.ac,v 1.245 2005/02/20 10:01:49 dtucker Exp $
|
||||
# $Id: configure.ac,v 1.246 2005/02/20 12:27:11 dtucker Exp $
|
||||
#
|
||||
# Copyright (c) 1999-2004 Damien Miller
|
||||
#
|
||||
|
@ -122,8 +122,8 @@ case "$host" in
|
|||
])
|
||||
])
|
||||
dnl Check for various auth function declarations in headers.
|
||||
AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess, passwdexpired],,
|
||||
[#include <usersec.h>])
|
||||
AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
|
||||
passwdexpired], , , [#include <usersec.h>])
|
||||
dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
|
||||
AC_CHECK_DECLS(loginfailed,
|
||||
[AC_MSG_CHECKING(if loginfailed takes 4 arguments)
|
||||
|
|
Loading…
Reference in New Issue