diff options
author | Tim Rice <tim@multitalents.net> | 2010-01-22 10:25:15 -0800 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2010-01-22 10:25:15 -0800 |
commit | 6761c7417d362fb8c0d71ddc60c3914f97e88c28 (patch) | |
tree | a371af342d208cb07644bbffc3c9dd003fe351d1 | |
parent | 7bb7471b80af905452cd7e3a5b3ad1c5cbed9595 (diff) |
- (tim) [configure.ac] Due to constraints in Windows Sockets in terms of
socket inheritance, reduce the default SO_RCVBUF/SO_SNDBUF buffer size
in Cygwin to 65535. Patch from Corinna Vinschen.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ | |||
1 | 20100122 | ||
2 | - (tim) [configure.ac] Due to constraints in Windows Sockets in terms of | ||
3 | socket inheritance, reduce the default SO_RCVBUF/SO_SNDBUF buffer size | ||
4 | in Cygwin to 65535. Patch from Corinna Vinschen. | ||
5 | |||
1 | 20100117 | 6 | 20100117 |
2 | - (tim) [configure.ac] OpenServer 5 needs BROKEN_GETADDRINFO too. | 7 | - (tim) [configure.ac] OpenServer 5 needs BROKEN_GETADDRINFO too. |
3 | - (tim) [configure.ac] On SVR5 systems, use the C99-conforming functions | 8 | - (tim) [configure.ac] On SVR5 systems, use the C99-conforming functions |
diff --git a/configure.ac b/configure.ac index aa74fc30f..e5de6f58b 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.438 2010/01/18 01:05:39 tim Exp $ | 1 | # $Id: configure.ac,v 1.439 2010/01/22 18:25:15 tim Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -15,7 +15,7 @@ | |||
15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | 16 | ||
17 | AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) | 17 | AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) |
18 | AC_REVISION($Revision: 1.438 $) | 18 | AC_REVISION($Revision: 1.439 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | 20 | ||
21 | AC_CONFIG_HEADER(config.h) | 21 | AC_CONFIG_HEADER(config.h) |
@@ -446,7 +446,7 @@ int main(void) { exit(0); } | |||
446 | AC_DEFINE(DISABLE_FD_PASSING, 1, | 446 | AC_DEFINE(DISABLE_FD_PASSING, 1, |
447 | [Define if your platform needs to skip post auth | 447 | [Define if your platform needs to skip post auth |
448 | file descriptor passing]) | 448 | file descriptor passing]) |
449 | AC_DEFINE(SSH_IOBUFSZ, 65536, [Windows is sensitive to read buffer size]) | 449 | AC_DEFINE(SSH_IOBUFSZ, 65535, [Windows is sensitive to read buffer size]) |
450 | ;; | 450 | ;; |
451 | *-*-dgux*) | 451 | *-*-dgux*) |
452 | AC_DEFINE(IP_TOS_IS_BROKEN, 1, | 452 | AC_DEFINE(IP_TOS_IS_BROKEN, 1, |