diff options
author | 2001-05-25 12:17:55 +0000 | |
---|---|---|
committer | 2001-05-25 12:17:55 +0000 | |
commit | 63df7d0583f788f5de0868505d5bb7ede6228382 (patch) | |
tree | f08eecb3219eec57f163d74066c2f111e0d86076 | |
parent | add support for building with ${SUDO}. ok hin@ (diff) | |
download | wireguard-openbsd-63df7d0583f788f5de0868505d5bb7ede6228382.tar.xz wireguard-openbsd-63df7d0583f788f5de0868505d5bb7ede6228382.zip |
Correct and comment out krb5. This is not working at the moment, but we want
to use bsd_auth instead.
-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 |