diff options
| author | Mark Murray <markm@FreeBSD.org> | 2000-03-09 14:54:00 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2000-03-09 14:54:00 +0000 |
| commit | 283073b4e6227e899f55859974eb35930dce9af8 (patch) | |
| tree | 59043df88bf50bdb2f1378f56415cf6f6d226065 | |
| parent | c59bf0999660c29cce84f13a49c5db2bb09c9e7a (diff) | |
Notes
| -rw-r--r-- | secure/usr.sbin/sshd/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/secure/usr.sbin/sshd/Makefile b/secure/usr.sbin/sshd/Makefile index 8ac914d68f10..62ec36287923 100644 --- a/secure/usr.sbin/sshd/Makefile +++ b/secure/usr.sbin/sshd/Makefile @@ -2,6 +2,7 @@ # SSHSRC= ${.CURDIR}/../../../crypto/openssh +LOGINSRC= ${.CURDIR}/../../../usr.bin/login PROG= sshd BINOWN= root @@ -9,13 +10,14 @@ BINMODE=555 MAN8= sshd.8 SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ - pty.c log-server.c login.c servconf.c serverloop.c + pty.c log-server.c login.c servconf.c serverloop.c \ + login_access.c -CFLAGS= -DLIBWRAP +CFLAGS+= -DLIBWRAP -DLOGIN_ACCESS -I${LOGINSRC} .include <bsd.own.mk> -.PATH: ${SSHSRC} +.PATH: ${SSHSRC} ${LOGINSRC} .if defined(MAKE_KERBEROS4) && \ ((${MAKE_KERBEROS4} == "yes") || (${MAKE_KERBEROS4} == "YES")) |
