diff options
author | 1999-09-29 00:09:50 +0000 | |
---|---|---|
committer | 1999-09-29 00:09:50 +0000 | |
commit | b7e602c7c9189099d146ab161df8128cbefbeb64 (patch) | |
tree | 30b0df50aa3e5234881e1b9384549a2a0135c8fc | |
parent | Add option NETATALK (commented out). (diff) | |
download | wireguard-openbsd-b7e602c7c9189099d146ab161df8128cbefbeb64.tar.xz wireguard-openbsd-b7e602c7c9189099d146ab161df8128cbefbeb64.zip |
krb4 support; evanc@concer.to
-rw-r--r-- | usr.bin/ssh/Makefile.inc | 2 | ||||
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/ssh/Makefile.inc b/usr.bin/ssh/Makefile.inc index 6a53bcddb54..ffd99f0b228 100644 --- a/usr.bin/ssh/Makefile.inc +++ b/usr.bin/ssh/Makefile.inc @@ -1,3 +1,3 @@ -CFLAGS+= -I${.OBJDIR} -I${.CURDIR}/.. +CFLAGS+= -I${.OBJDIR} -I${.CURDIR}/.. -DKRB4 -I/usr/include/kerberosIV USER_SHELLS = sh jsh ksh csh tcsh bash zsh ash diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index 7c2655475d3..eb71016ca9b 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -4,12 +4,12 @@ PROG= sshd BINOWN= root BINMODE=555 BINDIR= /usr/sbin -LDADD= -lkrb -lcrypto -ldes -lutil -lz +LDADD= -lkrb -lcrypto -ldes -lutil -lz -lkrb MAN= 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 hostfile.c canohost.c servconf.c tildexpand.c \ - uidswap.c serverloop.c rsa.c \ +SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ + auth-krb4.c pty.c log-server.c login.c hostfile.c canohost.c \ + servconf.c tildexpand.c uidswap.c serverloop.c rsa.c \ ssh_md5.c buffer.c packet.c xmalloc.c ttymodes.c channels.c bufaux.c \ authfd.c authfile.c crc32.c match.c mpaux.c minfd.c cipher.c \ compress.c |