mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
have libcrypto to do that. Both consumers of this lib have been converted to use libcrypto. (bin/ed and secure/usr.bin/bdes).
14 lines
202 B
Makefile
14 lines
202 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR=
|
|
.if !defined(NO_OPENSSL)
|
|
SUBDIR+=libcrypto libssl
|
|
.if !defined(NO_OPENSSH)
|
|
SUBDIR+=libssh
|
|
.endif
|
|
.if defined(NO_KERBEROS)
|
|
SUBDIR+=libtelnet
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|