mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
openssh: Add GSSAPI and Kerberos support to sshd Makefile
Reported by: cy
Reviewed by: emaste
Approved by: emaste (mentor)
Fixes: 0fdf8fae8b ("openssh: Update to 9.8p1")
This commit is contained in:
parent
56c8c19046
commit
dcb4ae528d
1 changed files with 6 additions and 0 deletions
|
|
@ -16,6 +16,12 @@ moduli: .MADE
|
|||
|
||||
LIBADD= ssh util
|
||||
|
||||
.if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no"
|
||||
CFLAGS+= -include krb5_config.h
|
||||
SRCS+= krb5_config.h
|
||||
LIBADD+= gssapi_krb5 gssapi krb5
|
||||
.endif
|
||||
|
||||
.if ${MK_TCP_WRAPPERS} != "no"
|
||||
CFLAGS+= -DLIBWRAP=1
|
||||
LIBADD+= wrap
|
||||
|
|
|
|||
Loading…
Reference in a new issue