mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-27 04:53:28 +00:00
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
16 lines
290 B
Makefile
16 lines
290 B
Makefile
# $FreeBSD$
|
|
|
|
.if exists(${.CURDIR}/../../lib/libcrypt/obj)
|
|
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt/obj
|
|
.else
|
|
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt
|
|
.endif
|
|
|
|
.if !defined(MAKE_IDEA)
|
|
CFLAGS+= -DNO_IDEA
|
|
.endif
|
|
|
|
.if !defined(NO_OPENSSH)
|
|
SSHDIR= ${.CURDIR}/../../../crypto/openssh
|
|
.endif
|