* Disable the HPN patch in OpenSSH. It breaks connection sharing.

E.g. in `nix-copy-closure --to ...', the master hangs in futex().

svn path=/nixpkgs/trunk/; revision=19803
This commit is contained in:
Eelco Dolstra 2010-02-04 01:39:00 +00:00
parent b46d05da85
commit 82f0eb65e3

View file

@ -1211,7 +1211,7 @@ let
openssh = import ../tools/networking/openssh {
inherit fetchurl stdenv zlib openssl pam perl;
pamSupport = getPkgConfig "openssh" "pam" true;
hpnSupport = getPkgConfig "openssh" "hpn" true;
hpnSupport = getPkgConfig "openssh" "hpn" false;
etcDir = getPkgConfig "openssh" "etcDir" "/etc/ssh";
};