diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2001-05-25 12:17:56 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2001-05-25 12:17:56 +0000 |
commit | a5879e89c38b3ae37853cdc43ced5ca4c529d7c1 (patch) | |
tree | 2d3d023ab04f1926fecc273c96ec86de6b4edaab /usr.bin | |
parent | e35a59ce6c2b8a014f6e94bad12249a19254036c (diff) |
Correct and comment out krb5. This is not working at the moment, but we want
to use bsd_auth instead.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/login/Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/usr.bin/login/Makefile b/usr.bin/login/Makefile index b08043af7fd..b38ce9ea53b 100644 --- a/usr.bin/login/Makefile +++ b/usr.bin/login/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.15 2000/09/03 18:41:18 espie Exp $ +# $OpenBSD: Makefile,v 1.16 2001/05/25 12:17:55 hin Exp $ PROG= login SRCS= login.c failedlogin.c @@ -14,12 +14,14 @@ LDADD+= -lskey DPADD+= ${LIBSKEY} .endif -.if (${KERBEROS5:L} == "yes") -CFLAGS+= -DKERBEROS5 -SRCS+= k5login.c -LDADD+= -lkrb5 -lcrypto -DPADD+= ${LIBKRB5} ${LIBCRYPTO} -.elif (${KERBEROS:L} == "yes") +#.if (${KERBEROS5:L} == "yes") +#CFLAGS+= -DKERBEROS5 +#SRCS+= k5login.c +#LDADD+= -lkrb5 -lcrypto +#DPADD+= ${LIBKRB5} ${LIBCRYPTO} +#.endif + +.if (${KERBEROS:L} == "yes") CFLAGS+= -DKERBEROS SRCS+= klogin.c LDADD+= -lkafs -lkrb -ldes |