aboutsummaryrefslogtreecommitdiff
path: root/secure
diff options
context:
space:
mode:
Diffstat (limited to 'secure')
-rw-r--r--secure/libexec/Makefile1
-rw-r--r--secure/libexec/sshd-auth/Makefile57
-rw-r--r--secure/libexec/sshd-session/Makefile4
3 files changed, 59 insertions, 3 deletions
diff --git a/secure/libexec/Makefile b/secure/libexec/Makefile
index 8896e232e2be..7f239ccc7fee 100644
--- a/secure/libexec/Makefile
+++ b/secure/libexec/Makefile
@@ -3,6 +3,7 @@
SUBDIR=
.if ${MK_OPENSSH} != "no"
SUBDIR+=sftp-server ssh-keysign ssh-pkcs11-helper ssh-sk-helper sshd-session
+SUBDIR+=sshd-auth
.endif
SUBDIR.${MK_TESTS}+= tests
diff --git a/secure/libexec/sshd-auth/Makefile b/secure/libexec/sshd-auth/Makefile
new file mode 100644
index 000000000000..a127b50b407a
--- /dev/null
+++ b/secure/libexec/sshd-auth/Makefile
@@ -0,0 +1,57 @@
+.include <src.opts.mk>
+.include "${SRCTOP}/secure/ssh.mk"
+
+PROG= sshd-auth
+SRCS= sshd-auth.c \
+ auth2-methods.c \
+ auth-rhosts.c auth-passwd.c sshpty.c sshlogin.c servconf.c \
+ serverloop.c auth.c auth2.c auth-options.c session.c auth2-chall.c \
+ groupaccess.c auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \
+ auth2-none.c auth2-passwd.c auth2-pubkey.c auth2-pubkeyfile.c \
+ auth2-gss.c gss-serv.c gss-serv-krb5.c \
+ monitor_wrap.c auth-krb5.c \
+ audit.c audit-bsm.c audit-linux.c platform.c \
+ loginrec.c auth-pam.c auth-shadow.c auth-sia.c \
+ sandbox-null.c sandbox-rlimit.c sandbox-darwin.c \
+ sandbox-seccomp-filter.c sandbox-capsicum.c sandbox-solaris.c \
+ sftp-server.c sftp-common.c \
+ uidswap.c $(SKSRCS)
+PACKAGE= ssh
+
+# gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile
+SRCS+= gss-genr.c
+
+MAN=
+
+# pam should always happen before ssh here for static linking
+LIBADD= pam ssh util
+
+.if ${MK_AUDIT} != "no"
+CFLAGS+= -DUSE_BSM_AUDIT=1 -DHAVE_GETAUDIT_ADDR=1
+LIBADD+= bsm
+.endif
+
+.if ${MK_BLACKLIST_SUPPORT} != "no"
+CFLAGS+= -DUSE_BLACKLIST=1 -I${SRCTOP}/contrib/blocklist/include
+SRCS+= blacklist.c
+LIBADD+= blacklist
+LDFLAGS+=-L${LIBBLACKLISTDIR}
+.endif
+
+.if ${MK_KERBEROS_SUPPORT} != "no"
+.if ${MK_MITKRB5} != "no"
+LIBADD+= gssapi_krb5 krb5
+.include "../../krb5/Makefile.inc"
+CFLAGS+= -I${KRB5_DIR}/include \
+ -I${KRB5_SRCTOP}/include \
+ -I${KRB5_OBJTOP}/lib
+.else
+LIBADD+= gssapi_krb5 gssapi krb5
+.endif
+.endif
+
+LIBADD+= crypto
+
+.include <bsd.prog.mk>
+
+.PATH: ${SSHDIR}
diff --git a/secure/libexec/sshd-session/Makefile b/secure/libexec/sshd-session/Makefile
index 5ed459fe492a..9e95c94000ff 100644
--- a/secure/libexec/sshd-session/Makefile
+++ b/secure/libexec/sshd-session/Makefile
@@ -13,9 +13,7 @@ SRCS= sshd-session.c auth-rhosts.c auth-passwd.c \
auth2-gss.c gss-serv.c gss-serv-krb5.c \
loginrec.c auth-pam.c auth-shadow.c auth-sia.c \
sftp-server.c sftp-common.c \
- sandbox-null.c sandbox-rlimit.c sandbox-systrace.c sandbox-darwin.c \
- sandbox-seccomp-filter.c sandbox-capsicum.c sandbox-pledge.c \
- sandbox-solaris.c uidswap.c $(SKSRCS)
+ uidswap.c platform-listen.c $(SKSRCS)
PACKAGE= ssh
# gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile