From 82f0eb65e30f42acb669a8a1a20ae1f13c4bb500 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 4 Feb 2010 01:39:00 +0000 Subject: [PATCH] * 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 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d32eb5be7d1..26e65d0c59e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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"; };