diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-10-13 08:14:23 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-10-13 08:14:23 +0000 |
commit | 6253030148c24c38d1793bdab4a29eeca5490a3a (patch) | |
tree | ea7ea8d6528f4c8b8fb11e7fd95079af21751099 /libexec/rshd/Makefile | |
parent | 20544e8960fd11bf8f27949241138b657b848bce (diff) |
The heimdal code switched to using DES from libcrypto when 0.7.2
was imported over four years ago, so we don't need to link libdes
for kerberos anymore.
ok mikeb@ deraadt@
Diffstat (limited to 'libexec/rshd/Makefile')
-rw-r--r-- | libexec/rshd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/rshd/Makefile b/libexec/rshd/Makefile index 0df4c7d7c3b..b91cfcd4ff6 100644 --- a/libexec/rshd/Makefile +++ b/libexec/rshd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2003/05/14 07:35:31 mho Exp $ +# $OpenBSD: Makefile,v 1.9 2010/10/13 08:14:22 jsg Exp $ PROG= rshd SRCS= rshd.c @@ -11,8 +11,8 @@ CFLAGS+= -Wall -Wno-unused #SRCS+= des_rw.c #.PATH: ${.CURDIR}/../../usr.bin/rsh #CFLAGS+=-DKERBEROS -#DPADD+= ${LIBKRB} ${LIBDES} -#LDADD+= -lkrb -ldes +#DPADD+= ${LIBKRB} +#LDADD+= -lkrb #.endif .include <bsd.prog.mk> |