summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2000-03-01 20:00:50 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-03-01 20:00:50 +0000
commit72a10986025cc18c7716d2adbcafb02112f33ef1 (patch)
tree534fccdc4668e374fceb3820ba7e26556941b485 /usr.bin/ssh
parent7f0d51f4486237d6a691bfcc8a1eb537a461bb57 (diff)
order kerberos libraries
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/sshd/Makefile8
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")