mirror of git://anongit.mindrot.org/openssh.git
- (djm) SunOS 4.x also needs to define HAVE_BOGUS_SYS_QUEUE_H as it has
a <sys/queue.h> that lacks the TAILQ_* macros. Patch from Todd C. Miller <Todd.Miller@courtesan.com>
This commit is contained in:
parent
a1072a8e37
commit
877d8ea144
|
@ -24,6 +24,9 @@
|
|||
- (djm) SA_INTERRUPT is the converse of SA_RESTART, apply it only for
|
||||
SIGALRM.
|
||||
- (djm) Move entropy.c over to mysignal()
|
||||
- (djm) SunOS 4.x also needs to define HAVE_BOGUS_SYS_QUEUE_H as it has
|
||||
a <sys/queue.h> that lacks the TAILQ_* macros. Patch from Todd C.
|
||||
Miller <Todd.Miller@courtesan.com>
|
||||
|
||||
20010217
|
||||
- (bal) OpenBSD Sync:
|
||||
|
@ -4031,4 +4034,4 @@
|
|||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.796 2001/02/18 04:28:11 djm Exp $
|
||||
$Id: ChangeLog,v 1.797 2001/02/18 04:29:28 djm Exp $
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: configure.in,v 1.245 2001/02/18 02:07:07 djm Exp $
|
||||
# $Id: configure.in,v 1.246 2001/02/18 04:29:29 djm Exp $
|
||||
|
||||
AC_INIT(ssh.c)
|
||||
|
||||
|
@ -175,6 +175,7 @@ mips-sony-bsd|mips-sony-newsos4)
|
|||
CPPFLAGS="$CPPFLAGS -DSUNOS4"
|
||||
AC_CHECK_FUNCS(getpwanam)
|
||||
AC_DEFINE(PAM_SUN_CODEBASE)
|
||||
AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
|
||||
conf_utmp_location=/etc/utmp
|
||||
conf_wtmp_location=/var/adm/wtmp
|
||||
conf_lastlog_location=/var/adm/lastlog
|
||||
|
|
Loading…
Reference in New Issue