diff options
author | yar <yar@FreeBSD.org> | 2006-07-31 19:15:10 +0000 |
---|---|---|
committer | yar <yar@FreeBSD.org> | 2006-07-31 19:15:10 +0000 |
commit | 73ebfe88f61c7a436472f5c6b29ba96f06ba7d59 (patch) | |
tree | 105d5da1119b8e09f6203a5fc3abae20bdfb5674 /libexec | |
parent | f4c396a7b53b98dc165ba04e8ab148e369fad1fb (diff) | |
download | FreeBSD-src-73ebfe88f61c7a436472f5c6b29ba96f06ba7d59.zip FreeBSD-src-73ebfe88f61c7a436472f5c6b29ba96f06ba7d59.tar.gz |
inetd and telnetd are not included in the standard release
crunched floppies, but they can be included as options in
src/release/picobsd (omitted by default though.) Therefore
preserve the RELEASE_CRUNCH knob in their Makefiles, but
tell its real purpose in a comment.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/telnetd/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libexec/telnetd/Makefile b/libexec/telnetd/Makefile index 1519170..9a4adca 100644 --- a/libexec/telnetd/Makefile +++ b/libexec/telnetd/Makefile @@ -30,6 +30,8 @@ LIBTELNET= ${.OBJDIR}/../../lib/libtelnet/libtelnet.a DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} LDADD= -lutil -ltermcap ${LIBTELNET} +# XXX for src/release/picobsd +.if !defined(RELEASE_CRUNCH) .if ${MK_OPENSSL} != "no" SRCS+= authenc.c CFLAGS+= -DAUTHENTICATION -DENCRYPTION @@ -42,5 +44,6 @@ 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> |