mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Build kerberized versions of the PAM library, and install them
into corresponding distributions during "make release". (This also cleans the "slib" distribution up from the .o files.) PR: misc/43825 (inspired by)
This commit is contained in:
parent
06b76511f0
commit
890b32ee41
3 changed files with 10 additions and 2 deletions
|
|
@ -3,7 +3,7 @@
|
|||
SUBDIR= doc lib libexec usr.bin usr.sbin
|
||||
|
||||
# These are the programs which depend on Kerberos.
|
||||
KPROGS= secure/usr.bin/ssh secure/usr.sbin/sshd
|
||||
KPROGS= lib/libpam secure/usr.bin/ssh secure/usr.sbin/sshd
|
||||
|
||||
# This target is used to rebuild these programs WITH Kerberos.
|
||||
kerberize:
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ MAINTAINER= markm@FreeBSD.org
|
|||
SUBDIR= include lib libexec usr.bin usr.sbin
|
||||
|
||||
# These are the programs which depend on Kerberos.
|
||||
KPROGS= bin/rcp libexec/ftpd libexec/rlogind libexec/rshd \
|
||||
KPROGS= bin/rcp lib/libpam libexec/ftpd libexec/rlogind libexec/rshd \
|
||||
sbin/dump sbin/restore usr.bin/login usr.bin/passwd \
|
||||
usr.bin/rlogin usr.bin/rsh usr.bin/su
|
||||
# kerberosIV'ed cvs is broken
|
||||
|
|
|
|||
|
|
@ -26,3 +26,11 @@
|
|||
|
||||
SHLIB_MAJOR= 2
|
||||
|
||||
.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
|
||||
.if defined(MAKE_KERBEROS4)
|
||||
DISTRIBUTION+= krb4
|
||||
.endif
|
||||
.if defined(MAKE_KERBEROS5)
|
||||
DISTRIBUTION+= krb5
|
||||
.endif
|
||||
.endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue