From fe55b573c001c66187da635932a9d849f4dd2616 Mon Sep 17 00:00:00 2001 From: yar Date: Mon, 31 Jul 2006 13:29:36 +0000 Subject: Stop enforcing dependencies between MK_* options at Makefile level. All the dependencies are satisfied now in . --- usr.bin/telnet/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'usr.bin') diff --git a/usr.bin/telnet/Makefile b/usr.bin/telnet/Makefile index c688c52..c5525b3 100644 --- a/usr.bin/telnet/Makefile +++ b/usr.bin/telnet/Makefile @@ -38,12 +38,13 @@ SRCS+= authenc.c CFLAGS+= -DENCRYPTION -DAUTHENTICATION -DIPSEC DPADD+= ${LIBMP} ${LIBCRYPTO} ${LIBCRYPT} ${LIBIPSEC} ${LIBPAM} LDADD+= -lmp -lcrypto -lcrypt -lipsec ${MINUSLPAM} +.endif + .if ${MK_KERBEROS_SUPPORT} != "no" CFLAGS+= -DKRB5 -DFORWARD -Dnet_write=telnet_net_write DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN} LDADD+= -lkrb5 -lasn1 -lcom_err -lroken .endif .endif -.endif .include -- cgit v1.1