diff options
author | 2003-05-14 07:31:30 +0000 | |
---|---|---|
committer | 2003-05-14 07:31:30 +0000 | |
commit | 6ab98f1ca25b4c7f363c796f7f2418ed27aa6369 (patch) | |
tree | d78bf78729e425da99e3416a0ab04f6cffb0c3cb | |
parent | Remove krb4 support. (diff) | |
download | wireguard-openbsd-6ab98f1ca25b4c7f363c796f7f2418ed27aa6369.tar.xz wireguard-openbsd-6ab98f1ca25b4c7f363c796f7f2418ed27aa6369.zip |
Remove krb4 support.
-rw-r--r-- | libexec/login_chpass/Makefile | 16 | ||||
-rw-r--r-- | libexec/rshd/Makefile | 16 | ||||
-rw-r--r-- | usr.bin/rsh/Makefile | 16 |
3 files changed, 25 insertions, 23 deletions
diff --git a/libexec/login_chpass/Makefile b/libexec/login_chpass/Makefile index e56255f4213..ad88ee1f81e 100644 --- a/libexec/login_chpass/Makefile +++ b/libexec/login_chpass/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2002/05/11 00:20:20 espie Exp $ +# $OpenBSD: Makefile,v 1.3 2003/05/14 07:31:30 mho Exp $ PROG= login_chpass @@ -10,12 +10,14 @@ MAN= login_chpass.8 .include <bsd.own.mk> # For KERBEROS and YP CFLAGS+=-Wall -.if (${KERBEROS:L} == "yes") -CFLAGS+=-DKERBEROS -SRCS+= new_pwd.c -DPADD+= ${LIBKADM} ${LIBKRB} ${LIBDES} ${LIBCOM_ERR} -LDADD+= -lkadm -lkrb -ldes -lcom_err -.endif + +#.if (${KERBEROS:L} == "yes") +#CFLAGS+=-DKERBEROS +#SRCS+= new_pwd.c +#DPADD+= ${LIBKADM} ${LIBKRB} ${LIBDES} ${LIBCOM_ERR} +#LDADD+= -lkadm -lkrb -ldes -lcom_err +#.endif + .if (${YP:L} == "yes") CFLAGS+=-DYP SRCS+= yp_passwd.c pwd_check.c pwd_gensalt.c diff --git a/libexec/rshd/Makefile b/libexec/rshd/Makefile index f497dd94141..0df4c7d7c3b 100644 --- a/libexec/rshd/Makefile +++ b/libexec/rshd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2002/05/06 22:23:53 deraadt Exp $ +# $OpenBSD: Makefile,v 1.8 2003/05/14 07:35:31 mho Exp $ PROG= rshd SRCS= rshd.c @@ -7,12 +7,12 @@ CFLAGS+= -Wall -Wno-unused .include <bsd.own.mk> -.if (${KERBEROS:L} == "yes") -SRCS+= des_rw.c -.PATH: ${.CURDIR}/../../usr.bin/rsh -CFLAGS+=-DKERBEROS -DPADD+= ${LIBKRB} ${LIBDES} -LDADD+= -lkrb -ldes -.endif +#.if (${KERBEROS:L} == "yes") +#SRCS+= des_rw.c +#.PATH: ${.CURDIR}/../../usr.bin/rsh +#CFLAGS+=-DKERBEROS +#DPADD+= ${LIBKRB} ${LIBDES} +#LDADD+= -lkrb -ldes +#.endif .include <bsd.prog.mk> diff --git a/usr.bin/rsh/Makefile b/usr.bin/rsh/Makefile index cf593094f1c..fd08dd2122f 100644 --- a/usr.bin/rsh/Makefile +++ b/usr.bin/rsh/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2002/05/06 22:23:53 deraadt Exp $ +# $OpenBSD: Makefile,v 1.7 2003/05/14 07:33:39 mho Exp $ PROG= rsh SRCS= rsh.c @@ -7,12 +7,12 @@ BINMODE=4555 .include <bsd.own.mk> # For KERBEROS -.if (${KERBEROS:L} == "yes") -SRCS+= des_rw.c -CFLAGS+=-DKERBEROS -SRCS+= krcmd.c kcmd.c -LDADD+= -lkrb -ldes -DPADD+= ${LIBKRB} ${LIBDES} -.endif +#.if (${KERBEROS:L} == "yes") +#SRCS+= des_rw.c +#CFLAGS+=-DKERBEROS +#SRCS+= krcmd.c kcmd.c +#LDADD+= -lkrb -ldes +#DPADD+= ${LIBKRB} ${LIBDES} +#.endif .include <bsd.prog.mk> |