diff options
author | yar <yar@FreeBSD.org> | 2006-07-31 13:29:36 +0000 |
---|---|---|
committer | yar <yar@FreeBSD.org> | 2006-07-31 13:29:36 +0000 |
commit | fe55b573c001c66187da635932a9d849f4dd2616 (patch) | |
tree | a7f76bec876094eb0068c0b7890246e6f2f2c3fb /libexec/telnetd | |
parent | 09bab3681df99ea60451587430c27cebf93d07d3 (diff) | |
download | FreeBSD-src-fe55b573c001c66187da635932a9d849f4dd2616.zip FreeBSD-src-fe55b573c001c66187da635932a9d849f4dd2616.tar.gz |
Stop enforcing dependencies between MK_* options at Makefile level.
All the dependencies are satisfied now in <bsd.own.mk>.
Diffstat (limited to 'libexec/telnetd')
-rw-r--r-- | libexec/telnetd/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libexec/telnetd/Makefile b/libexec/telnetd/Makefile index f60bf5a..1519170 100644 --- a/libexec/telnetd/Makefile +++ b/libexec/telnetd/Makefile @@ -35,11 +35,12 @@ SRCS+= authenc.c CFLAGS+= -DAUTHENTICATION -DENCRYPTION DPADD+= ${LIBMP} ${LIBCRYPTO} ${LIBCRYPT} ${LIBPAM} LDADD+= -lmp -lcrypto -lcrypt ${MINUSLPAM} +.endif + .if ${MK_KERBEROS_SUPPORT} != "no" CFLAGS+= -DKRB5 -DFORWARD -Dnet_write=telnet_net_write DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBROKEN} ${LIBCOM_ERR} LDADD+= -lkrb5 -lasn1 -lroken -lcom_err .endif -.endif .include <bsd.prog.mk> |