gnu: openssh: Add PAM support in sshd.

* gnu/packages/ssh.scm (openssh)[inputs]: Add LINUX-PAM.
[arguments]: Add "--with-pam" to #:configure-flags.
This commit is contained in:
Ludovic Courtès 2016-08-21 18:28:53 +02:00
parent d4b1977f83
commit 39012aab33
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 6 additions and 1 deletions

View File

@ -139,11 +139,16 @@ a server that supports the SSH-2 protocol.")
(build-system gnu-build-system)
(inputs `(("groff" ,groff)
("openssl" ,openssl)
("pam" ,linux-pam)
("zlib" ,zlib)
("xauth" ,xauth))) ;for 'ssh -X' and 'ssh -Y'
(arguments
`(#:test-target "tests"
#:configure-flags '("--sysconfdir=/etc")
#:configure-flags '("--sysconfdir=/etc"
;; Enable PAM support in sshd.
"--with-pam")
#:phases
(modify-phases %standard-phases
(add-after 'configure 'reset-/var/empty