d37df47d31
of releases. The -DNOCRYPT build option still exists for anyone who really wants to build non-cryptographic binaries, but the "crypto" release distribution is now part of "base", and anyone installing from a release will get cryptographic binaries. Approved by: re (scottl), markm Discussed on: freebsd-current, in late April 2004
19 lines
430 B
Makefile
19 lines
430 B
Makefile
# $FreeBSD$
|
|
|
|
.if exists(${.OBJDIR}/../lib)
|
|
LIBINSTALL= ${.OBJDIR}/../lib/libinstall.a
|
|
.else
|
|
LIBINSTALL= ${.CURDIR}/../lib/libinstall.a
|
|
.endif
|
|
|
|
.if !defined(NOCRYPT) && !defined(NO_OPENSSL) && \
|
|
defined(LDADD) && ${LDADD:M-lfetch} != ""
|
|
DPADD+= ${LIBSSL} ${LIBCRYPTO}
|
|
LDADD+= -lssl -lcrypto
|
|
.endif
|
|
|
|
# Inherit BINDIR from one level up.
|
|
.if exists(${.CURDIR}/../../Makefile.inc)
|
|
.include "${.CURDIR}/../../Makefile.inc"
|
|
.endif
|