diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-10-03 17:56:47 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-10-03 17:56:47 +0000 |
commit | cc68a74752deb0c1d78cf4837fbe236fc62bb96e (patch) | |
tree | f12a9a9e49546825fa2d871dcea51abcc440ec94 | |
parent | acf611fac7337a77b1c9cf6c5bae460d879c1227 (diff) |
AFS depends on kerberos, fixes KERBEROS=no
-rw-r--r-- | usr.bin/ssh/Makefile.inc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/ssh/Makefile.inc b/usr.bin/ssh/Makefile.inc index 9f6045686bc..633fb88db64 100644 --- a/usr.bin/ssh/Makefile.inc +++ b/usr.bin/ssh/Makefile.inc @@ -6,12 +6,11 @@ CFLAGS+= -I${.OBJDIR} -I${.CURDIR}/.. CFLAGS+= -DKRB4 -I/usr/include/kerberosIV LDADD+= -lkrb DPADD+= ${LIBKRB} -.endif - .if (${AFS} == "yes") CFLAGS+= -DAFS -LDADD+= -lkafs -DPADD+= ${LIBKRBAFS} -.endif +LDADD+= -lkafs +DPADD+= ${LIBKRBAFS} +.endif # AFS +.endif # KERBEROS USER_SHELLS = sh jsh ksh csh tcsh bash zsh ash |