summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sshd/Makefile
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2001-01-18 17:00:01 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2001-01-18 17:00:01 +0000
commit7132bfd52ca0f18bb1e926d3b0da86f89f55a3f5 (patch)
treee91c1e967ce5807278de0fcc6c77e3d51784ef72 /usr.bin/ssh/sshd/Makefile
parenta4691d42f749de19890823deb77459b3bd91c42a (diff)
1) removes fake skey from sshd, since this will be much
harder with /usr/libexec/auth/login_XXX 2) share/unify code used in ssh-1 and ssh-2 authentication (server side) 3) make addition of BSD_AUTH and other challenge reponse methods easier.
Diffstat (limited to 'usr.bin/ssh/sshd/Makefile')
-rw-r--r--usr.bin/ssh/sshd/Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile
index 6e4b3fe8637..20b52da6a40 100644
--- a/usr.bin/ssh/sshd/Makefile
+++ b/usr.bin/ssh/sshd/Makefile
@@ -10,7 +10,7 @@ CFLAGS+=-DHAVE_LOGIN_CAP
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 \
auth.c auth1.c auth2.c auth-options.c session.c dh.c \
- groupaccess.c
+ auth-skey.c auth2-skey.c groupaccess.c
.include <bsd.own.mk> # for KERBEROS and AFS
@@ -26,10 +26,6 @@ LDADD+= -lkrb
DPADD+= ${LIBKRB}
.endif # KERBEROS
-.if (${SKEY:L} == "yes")
-SRCS+= auth-skey.c auth2-skey.c
-.endif
-
.include <bsd.prog.mk>
LDADD+= -lcrypto -lutil -lz