mirror of git://anongit.mindrot.org/openssh.git
- (dtucker) Define SSHD_ACQUIRES_CTTY for NCR MP-RAS and Reliant Unix.
I'm pretty sure these are required. I also want to add -D_XOPEN_SOURCE=1 -D_XOPEN_SOURCE_EXTENDED=1 to CPPFLAGS for MP-RAS but I haven't had confirmation that it will not break anything else.
This commit is contained in:
parent
3cb84e5ec8
commit
2972d6c045
|
@ -1,6 +1,7 @@
|
|||
20030530
|
||||
- (dtucker) Add missing semicolon in md5crypt.c, patch from openssh at
|
||||
roumenpetrov.info
|
||||
- (dtucker) Define SSHD_ACQUIRES_CTTY for NCR MP-RAS and Reliant Unix.
|
||||
|
||||
20030526
|
||||
- (djm) Avoid auth2-chall.c warning when compiling without
|
||||
|
@ -1622,4 +1623,4 @@
|
|||
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
||||
ok provos@
|
||||
|
||||
$Id: ChangeLog,v 1.2753 2003/05/30 06:58:22 dtucker Exp $
|
||||
$Id: ChangeLog,v 1.2754 2003/05/30 07:43:42 dtucker Exp $
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: configure.ac,v 1.123 2003/05/19 23:24:42 djm Exp $
|
||||
# $Id: configure.ac,v 1.124 2003/05/30 07:43:42 dtucker Exp $
|
||||
|
||||
AC_INIT
|
||||
AC_CONFIG_SRCDIR([ssh.c])
|
||||
|
@ -298,6 +298,7 @@ mips-sony-bsd|mips-sony-newsos4)
|
|||
LDFLAGS="$LDFLAGS -L/usr/local/lib"
|
||||
LIBS="$LIBS -lc89"
|
||||
AC_DEFINE(USE_PIPES)
|
||||
AC_DEFINE(SSHD_ACQUIRES_CTTY)
|
||||
;;
|
||||
*-sni-sysv*)
|
||||
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
|
||||
|
@ -306,6 +307,7 @@ mips-sony-bsd|mips-sony-newsos4)
|
|||
IPADDR_IN_DISPLAY=yes
|
||||
AC_DEFINE(USE_PIPES)
|
||||
AC_DEFINE(IP_TOS_IS_BROKEN)
|
||||
AC_DEFINE(SSHD_ACQUIRES_CTTY)
|
||||
# /usr/ucblib/libucb.a no longer needed on ReliantUNIX
|
||||
# Attention: always take care to bind libsocket and libnsl before libc,
|
||||
# otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
|
||||
|
|
Loading…
Reference in New Issue