mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix for the NO_OPENSSL case.
Reported by: Marius Strobl <marius@alchemy.franken.de>
This commit is contained in:
parent
5b0c29d6dc
commit
8027fe397a
2 changed files with 3 additions and 3 deletions
|
|
@ -5,7 +5,7 @@ SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
|
|||
LINKS= ${BINDIR}/ed ${BINDIR}/red
|
||||
MLINKS= ed.1 red.1
|
||||
|
||||
.if exists(${.CURDIR}/../../secure) && !defined(NOCRYPT)
|
||||
.if exists(${.CURDIR}/../../crypto) && !defined(NO_OPENSSL)
|
||||
DISTRIBUTION=crypto
|
||||
CFLAGS+=-DDES
|
||||
DPADD= ${LIBCRYPTO}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
SUBDIR= bdes
|
||||
SUBDIR=
|
||||
.if !defined(NO_OPENSSL)
|
||||
SUBDIR+=openssl
|
||||
SUBDIR+=bdes openssl
|
||||
.if !defined(NO_OPENSSH)
|
||||
SUBDIR+=scp sftp ssh ssh-add ssh-agent ssh-keygen ssh-keyscan
|
||||
.endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue