search for: have_news4

Displaying 2 results from an estimated 2 matches for "have_news4".

2001 Nov 27
2
3.0.1p1 losing tty modes?
...I know why vhangup() is needed: --- sshpty.c.orig Tue Nov 27 02:32:50 2001 +++ sshpty.c Tue Nov 27 02:33:45 2001 @@ -252,6 +252,7 @@ int fd; #ifdef USE_VHANGUP void *old; + struct termios tio; #endif /* USE_VHANGUP */ #ifdef _CRAY @@ -310,6 +311,7 @@ #endif /* HAVE_NEWS4 */ #ifdef USE_VHANGUP old = mysignal(SIGHUP, SIG_IGN); + tcgetattr(*ttyfd,&tio); vhangup(); mysignal(SIGHUP, old); #endif /* USE_VHANGUP */ @@ -320,6 +322,7 @@ #ifdef USE_VHANGUP close(*ttyfd); *ttyfd = fd; + tcsetat...
2002 Apr 10
1
openssh-3.1p1 on GNU/Hurd
...--- openssh-3.1p1.old/configure.ac Wed Feb 27 01:12:35 2002 +++ openssh-3.1p1/configure.ac Tue Apr 9 16:36:19 2002 @@ -126,6 +126,9 @@ AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H) inet6_default_4in6=yes ;; +*-*-gnu*) + AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H) + ;; mips-sony-bsd|mips-sony-newsos4) AC_DEFINE(HAVE_NEWS4) SONY=1 diff -urN openssh-3.1p1.old/session.c openssh-3.1p1/session.c --- openssh-3.1p1.old/session.c Mon Feb 25 10:48:03 2002 +++ openssh-3.1p1/session.c Tue Apr 9 20:59:48 2002 @@ -56,6 +56,7 @@ #include "serverloop.h" #include "canohost.h" #include "session.h"...