aboutsummaryrefslogtreecommitdiff
path: root/lib/libtelnet
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2003-07-24 17:19:15 +0000
committerMark Murray <markm@FreeBSD.org>2003-07-24 17:19:15 +0000
commit482d5f1f6a9514ac70488333930d16e5a62e84f0 (patch)
tree4aede763ad1e0ecffe02367798b914ca9b6322ea /lib/libtelnet
parenta6ca48085c24d581629d42227c57791e6486264b (diff)
downloadsrc-482d5f1f6a9514ac70488333930d16e5a62e84f0.tar.gz
src-482d5f1f6a9514ac70488333930d16e5a62e84f0.zip
Make sure that a "make release" (more accurately the bit that makes
the crunched binary) get a non-cryptographic telnet. This is overkill in that it covers stuff that is not normally used in a crunched binary.
Notes
Notes: svn path=/head/; revision=117973
Diffstat (limited to 'lib/libtelnet')
-rw-r--r--lib/libtelnet/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libtelnet/Makefile b/lib/libtelnet/Makefile
index 0339402ee6ef..3d12f8adfe86 100644
--- a/lib/libtelnet/Makefile
+++ b/lib/libtelnet/Makefile
@@ -13,6 +13,7 @@ CFLAGS+= -I${TELNETDIR}
WARNS?= 2
+.if !defined(RELEASE_CRUNCH)
.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
DISTRIBUTION= crypto
SRCS+= encrypt.c auth.c enc_des.c sra.c pk.c
@@ -23,6 +24,7 @@ CFLAGS+= -DKRB5 -I${KRB5DIR}/lib/krb5 -I${KRB5OBJDIR} -I${ASN1OBJDIR}
CFLAGS+= -DFORWARD -Dnet_write=telnet_net_write
.endif
.endif
+.endif
INCS= ${TELNETDIR}/arpa/telnet.h
INCSDIR= ${INCLUDEDIR}/arpa