mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
openssh: allow building without linking openssl
http://undeadly.org/cgi?action=article&sid=20140430045723 has the original announcement of this option. Note, openssl headers are still required at build time, see this comment: http://www.gossamer-threads.com/lists/openssh/dev/61125#61125
This commit is contained in:
parent
0bf8a1a86d
commit
14201da332
@ -4,6 +4,7 @@
|
||||
, withKerberos ? false
|
||||
, withGssapiPatches ? withKerberos
|
||||
, kerberos
|
||||
, linkOpenssl? true
|
||||
}:
|
||||
|
||||
assert withKerberos -> kerberos != null;
|
||||
@ -54,7 +55,8 @@ stdenv.mkDerivation rec {
|
||||
(if pam != null then "--with-pam" else "--without-pam")
|
||||
] ++ optional (etcDir != null) "--sysconfdir=${etcDir}"
|
||||
++ optional withKerberos "--with-kerberos5=${kerberos}"
|
||||
++ optional stdenv.isDarwin "--disable-libutil";
|
||||
++ optional stdenv.isDarwin "--disable-libutil"
|
||||
++ optional (!linkOpenssl) "--without-openssl";
|
||||
|
||||
preConfigure = ''
|
||||
configureFlagsArray+=("--with-privsep-path=$out/empty")
|
||||
|
Loading…
Reference in New Issue
Block a user