diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-12-07 16:08:09 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-12-07 16:08:09 +0000 |
commit | e42070a701fc8453434cfe449439d252fc176542 (patch) | |
tree | 6a1e5e2830d44ffda1dbf04bd3d32d8dcfd44c21 /secure/usr.sbin | |
parent | 98a998d5e71e49fb5b209ff1d629114cd0b3a9ad (diff) | |
download | src-test2-e42070a701fc8453434cfe449439d252fc176542.tar.gz src-test2-e42070a701fc8453434cfe449439d252fc176542.zip |
Notes
Diffstat (limited to 'secure/usr.sbin')
-rw-r--r-- | secure/usr.sbin/sshd/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/secure/usr.sbin/sshd/Makefile b/secure/usr.sbin/sshd/Makefile index 7ccc5ea26780..2974f6b9c114 100644 --- a/secure/usr.sbin/sshd/Makefile +++ b/secure/usr.sbin/sshd/Makefile @@ -24,6 +24,7 @@ SRCS+= gss-genr.c MAN= sshd.8 sshd_config.5 CFLAGS+=-I${SSHDIR} -include ssh_namespace.h +SRCS+= ssh_namespace.h # pam should always happen before ssh here for static linking LIBADD= pam ssh util wrap @@ -41,6 +42,7 @@ LIBADD+= bsm .if ${MK_KERBEROS_SUPPORT} != "no" CFLAGS+= -include krb5_config.h +SRCS+= krb5_config.h LIBADD+= gssapi_krb5 gssapi krb5 .endif @@ -53,8 +55,3 @@ CFLAGS+= -DXAUTH_PATH=\"${LOCALBASE}/bin/xauth\" .include <bsd.prog.mk> .PATH: ${SSHDIR} - -${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h -.if ${MK_KERBEROS_SUPPORT} != "no" -${OBJS} ${POBJS} ${SOBJS}: krb5_config.h -.endif |