]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (bal) Bugzilla 477 patch by wendyp@cray.com. Define TIOCGPGRP for
authorBen Lindstrom <mouring@eviladmin.org>
Mon, 27 Jan 2003 21:15:10 +0000 (21:15 +0000)
committerBen Lindstrom <mouring@eviladmin.org>
Mon, 27 Jan 2003 21:15:10 +0000 (21:15 +0000)
   cray.  Also removed test for tcgetpgrp in configure.ac since it
   is no longer used.

ChangeLog
configure.ac
openbsd-compat/bsd-cray.h

index 70ce05524725f8825071a1282c9d8b2096d81dde..2dd3bc6f5d7c2ce1864e0697100592701a5c2836 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+200301027
+ - (bal) Bugzilla 477 patch by wendyp@cray.com.  Define TIOCGPGRP for
+   cray.  Also removed test for tcgetpgrp in configure.ac since it
+   is no longer used.
+
 20030124
  - (djm) OpenBSD CVS Sync
    - jmc@cvs.openbsd.org 2003/01/23 08:58:47
      save auth method before monitor_reset_key_state(); bugzilla bug #284;
      ok provos@
 
-$Id: ChangeLog,v 1.2587 2003/01/24 00:50:32 djm Exp $
+$Id: ChangeLog,v 1.2588 2003/01/27 21:15:10 mouring Exp $
index b85f1884e9825b99d73dd3dfe308267f908bfe92..870def2ae1e12df8cbc48eb9107aad14ed05c7f0 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.102 2003/01/20 04:20:25 tim Exp $
+# $Id: configure.ac,v 1.103 2003/01/27 21:15:10 mouring Exp $
 
 AC_INIT
 AC_CONFIG_SRCDIR([ssh.c])
@@ -610,8 +610,7 @@ AC_CHECK_FUNCS(arc4random b64_ntop bcopy bindresvport_sa \
        setenv seteuid setgroups setlogin setproctitle setresgid setreuid \
        setrlimit setsid setpcred setvbuf sigaction sigvec snprintf \
        socketpair strerror strlcat strlcpy strmode strnvis sysconf \
-       tcgetpgrp truncate utimes vhangup vsnprintf waitpid __b64_ntop \
-       _getpty)
+       truncate utimes vhangup vsnprintf waitpid __b64_ntop _getpty)
 
 dnl Make sure strsep prototype is defined before defining HAVE_STRSEP
 AC_CHECK_DECL(strsep, [AC_CHECK_FUNCS(strsep)])
index 8868b4364654fddf914458f9214564f75ba01d6b..9a15cb251b3e09a473e6cbfdf8a252e61edbe01a 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * $Id: bsd-cray.h,v 1.5 2002/09/26 00:38:51 tim Exp $
+ * $Id: bsd-cray.h,v 1.6 2003/01/27 21:15:11 mouring Exp $
  *
  * bsd-cray.h
  *
@@ -49,6 +49,8 @@ extern        char   cray_tmpdir[];                   /* cray tmpdir */
 #ifndef MAXHOSTNAMELEN
 #define MAXHOSTNAMELEN  64
 #endif
+#include <sys/ttold.h>
+#define TIOCGPGRP (tIOC|20)
 #endif
 
 #endif /* _BSD_CRAY_H */