diff options
author | 2003-05-14 06:47:49 +0000 | |
---|---|---|
committer | 2003-05-14 06:47:49 +0000 | |
commit | 0a2137e3b5f81e0dc4d652c60b5e0b52466d53e7 (patch) | |
tree | bdcd14f84f6ec0d89265705b664ae1f5d1708619 | |
parent | Mention that without a password being specified, the account is disabled (diff) | |
download | wireguard-openbsd-0a2137e3b5f81e0dc4d652c60b5e0b52466d53e7.tar.xz wireguard-openbsd-0a2137e3b5f81e0dc4d652c60b5e0b52466d53e7.zip |
Remove krb4 support.
-rw-r--r-- | libexec/telnetd/Makefile | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/libexec/telnetd/Makefile b/libexec/telnetd/Makefile index b9a8443ef2e..d8bea3a31a3 100644 --- a/libexec/telnetd/Makefile +++ b/libexec/telnetd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2003/05/14 01:46:51 hin Exp $ +# $OpenBSD: Makefile,v 1.19 2003/05/14 06:47:49 mho Exp $ # from: @(#)Makefile 8.2 (Berkeley) 12/15/93 # $NetBSD: Makefile,v 1.6 1996/02/24 01:22:12 jtk Exp $ @@ -17,16 +17,9 @@ MAN= telnetd.8 .include <bsd.own.mk> # for KERBEROS .if (${KERBEROS5:L} == "yes") -SRCS+= kerberos5.c enc_des.c -LDADD+= -lkrb5 -lasn1 -lcrypto -lcom_err -lkafs -CFLAGS+= -DKRB5 -DAUTHENTICATION -DENCRYPTION -DDES_ENCRYPTION -.endif - -.if (${KERBEROS:L} == "yes") -CFLAGS+=-DENCRYPTION -DAUTHENTICATION -DKRB4 -DDES_ENCRYPTION -LDADD+= -lkrb -lcrypto -ldes -DPADD+= ${LIBDES} ${LIBKRB} -SRCS+= kerberos.c +CFLAGS+=-DENCRYPTION -DAUTHENTICATION -I${.CURDIR}/../../lib +DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO} ${LIBDES} ${LIBCOM_ERR} +LDADD+= -lkrb5 -lasn1 -lcrypto -ldes -lcom_err .endif .include <bsd.prog.mk> |