From ddbe9077744ad69debbb526e1ba5d3f417413b14 Mon Sep 17 00:00:00 2001 From: kris Date: Mon, 13 Mar 2000 21:35:30 +0000 Subject: Fix world with -DNOCRYPT, hopefully fix release for non-crypto collection. Reported by: Jason Garman Feedback by: bde, Bob Bishop , jhay --- usr.sbin/tcpdump/tcpdump/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr.sbin/tcpdump/tcpdump/Makefile b/usr.sbin/tcpdump/tcpdump/Makefile index b0098bb..10c4ac5 100644 --- a/usr.sbin/tcpdump/tcpdump/Makefile +++ b/usr.sbin/tcpdump/tcpdump/Makefile @@ -21,7 +21,9 @@ SRCS = version.c tcpdump.c \ CLEANFILES+= version.c DPADD+= ${LIBL} ${LIBPCAP} LDADD+= -ll -lpcap -.if exists(../../../crypto) && !defined(NOSECURE) && !defined(NO_OPENSSL) +.if exists(../../../crypto) && !defined(NOCRYPT) && !defined(NOSECURE) && \ + !defined(NO_OPENSSL) && !defined(RELEASE_CRUNCH) +DISTRIBUTION=crypto DPADD+= ${LIBCRYPTO} LDADD+= -lcrypto CFLAGS+= -I${DESTDIR}/usr/include/openssl -DCRYPTO -DHAVE_LIBCRYPTO -DHAVE_RC5_H -DHAVE_CAST_H -- cgit v1.1