Fix world with -DNOCRYPT, hopefully fix release for non-crypto collection.

Reported by:	Jason Garman <jgarman@wedgie.org>
Feedback by:	bde, Bob Bishop <rb@gid.co.uk>, jhay
This commit is contained in:
Kris Kennaway 2000-03-13 21:35:30 +00:00
parent 370af64c61
commit ee9e4faa2d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=58024

View File

@ -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