diff options
author | 2000-03-01 20:00:49 +0000 | |
---|---|---|
committer | 2000-03-01 20:00:49 +0000 | |
commit | e8f8639738c76cb6397577bb7bff557ab624dcbc (patch) | |
tree | 5727c9497a86cd0d34a4e13e4af27fb00d98b779 | |
parent | Prepare for new pmap (diff) | |
download | wireguard-openbsd-e8f8639738c76cb6397577bb7bff557ab624dcbc.tar.xz wireguard-openbsd-e8f8639738c76cb6397577bb7bff557ab624dcbc.zip |
order kerberos libraries
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index 15d6eec2554..c0ca67428d1 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -12,15 +12,15 @@ SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ .include <bsd.own.mk> # for KERBEROS and AFS .if (${KERBEROS} == "yes") -CFLAGS+= -DKRB4 -I/usr/include/kerberosIV -SRCS+= auth-krb4.c -LDADD+= -lkrb -DPADD+= ${LIBKRB} .if (${AFS} == "yes") CFLAGS+= -DAFS LDADD+= -lkafs DPADD+= ${LIBKRBAFS} .endif # AFS +CFLAGS+= -DKRB4 -I/usr/include/kerberosIV +SRCS+= auth-krb4.c +LDADD+= -lkrb +DPADD+= ${LIBKRB} .endif # KERBEROS .if (${SKEY} == "yes") |