diff options
author | peter <peter@FreeBSD.org> | 1996-08-08 21:47:55 +0800 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-08-08 21:47:55 +0800 |
commit | 78bef7ab7dcd3be8147b27f016d9b701b6026957 (patch) | |
tree | 0b27ec56d137be2eca6e85f61b76d123e879ff81 /security | |
parent | 6eb2f983e8d434e4b3418750da544d055aced384 (diff) | |
download | freebsd-ports-gnome-78bef7ab7dcd3be8147b27f016d9b701b6026957.tar.gz freebsd-ports-gnome-78bef7ab7dcd3be8147b27f016d9b701b6026957.tar.zst freebsd-ports-gnome-78bef7ab7dcd3be8147b27f016d9b701b6026957.zip |
Turn off the unconditional use of USE_PIPES as it prevents rdist from using
ssh for transport. FreeBSD does not have the implementation bugs that some
other systems appear to have, this option only hurts us.
Reviewed by: torstenb
Diffstat (limited to 'security')
-rw-r--r-- | security/ssh2/files/patch-aj | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/security/ssh2/files/patch-aj b/security/ssh2/files/patch-aj new file mode 100644 index 000000000000..b20aab8e19f8 --- /dev/null +++ b/security/ssh2/files/patch-aj @@ -0,0 +1,30 @@ +--- configure.in.dist Wed Aug 7 13:51:51 1996 ++++ configure.in Wed Aug 7 13:54:35 1996 +@@ -344,9 +344,9 @@ + ;; + esac + +-# Socket pairs appear to be broken on several systems. I don't know exactly +-# where, so I'll use pipes everywhere for now. +-AC_DEFINE(USE_PIPES) ++dnl # Socket pairs appear to be broken on several systems. I don't know exactly ++dnl # where, so I'll use pipes everywhere for now. ++dnl AC_DEFINE(USE_PIPES) + + AC_MSG_CHECKING([that the compiler works]) + AC_TRY_RUN([ main(int ac, char **av) { return 0; } ], +--- configure.dist Wed Aug 7 13:45:37 1996 ++++ configure Wed Aug 7 13:55:29 1996 +@@ -1274,12 +1274,6 @@ + ;; + esac + +-# Socket pairs appear to be broken on several systems. I don't know exactly +-# where, so I'll use pipes everywhere for now. +-cat >> confdefs.h <<\EOF +-#define USE_PIPES 1 +-EOF +- + + echo $ac_n "checking that the compiler works""... $ac_c" 1>&6 + if test "$cross_compiling" = yes; then |