mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
applications linked with Linux-PAM will still work.
Remove pam_get_pass(); OpenPAM has pam_get_authtok().
Remove pam_prompt(); OpenPAM has pam_{,v}{error,info,prompt}().
Remove pam_set_item(3) man page as OpenPAM has its own.
Sponsored by: DARPA, NAI Labs
14 lines
301 B
Makefile
14 lines
301 B
Makefile
# PAM module for SSH
|
|
# $FreeBSD$
|
|
|
|
SSHSRC= ${.CURDIR}/../../../../crypto/openssh
|
|
|
|
LIB= pam_ssh
|
|
SHLIB_NAME= ${LIB}.so.${SHLIB_MAJOR}
|
|
SRCS= pam_ssh.c
|
|
CFLAGS+= -I${SSHSRC}
|
|
DPADD= ${LIBSSH} ${LIBCRYPTO} ${LIBCRYPT} ${LIBUTIL}
|
|
LDADD= -lssh -lcrypto -lcrypt -lutil
|
|
MAN= pam_ssh.8
|
|
|
|
.include <bsd.lib.mk>
|