mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
Most things depend on !defined(NO_OPENSSL); make it look so.
This commit is contained in:
parent
bce0c9275c
commit
6402d39a2b
3 changed files with 13 additions and 10 deletions
|
|
@ -1,14 +1,14 @@
|
|||
# $FreeBSD$
|
||||
|
||||
SUBDIR= libcipher
|
||||
.if !defined(NO_OPENSSL) && !defined(MAKE_KERBEROS5)
|
||||
SUBDIR+=libtelnet
|
||||
.endif
|
||||
.if !defined(NO_OPENSSL)
|
||||
SUBDIR+=libcrypto libssl
|
||||
.if !defined(NO_OPENSSH)
|
||||
SUBDIR+=libssh
|
||||
.endif
|
||||
.if !defined(MAKE_KERBEROS5)
|
||||
SUBDIR+=libtelnet
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
|
|
|||
|
|
@ -1,10 +1,13 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.if !defined(NO_OPENSSL) && !defined(MAKE_KERBEROS5)
|
||||
SUBDIR= telnetd
|
||||
.endif
|
||||
.if !defined(NO_OPENSSL) && !defined(NO_OPENSSH)
|
||||
SUBDIR=
|
||||
.if !defined(NO_OPENSSL)
|
||||
.if !defined(NO_OPENSSH)
|
||||
SUBDIR+=sftp-server ssh-keysign
|
||||
.endif
|
||||
.if !defined(MAKE_KERBEROS5)
|
||||
SUBDIR+=telnetd
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
# $FreeBSD$
|
||||
|
||||
SUBDIR= bdes
|
||||
.if !defined(NO_OPENSSL) && !defined(MAKE_KERBEROS5)
|
||||
SUBDIR+=telnet
|
||||
.endif
|
||||
.if !defined(NO_OPENSSL)
|
||||
SUBDIR+=openssl
|
||||
.if !defined(NO_OPENSSH)
|
||||
SUBDIR+=scp sftp ssh ssh-add ssh-agent ssh-keygen ssh-keyscan
|
||||
.endif
|
||||
.if !defined(MAKE_KERBEROS5)
|
||||
SUBDIR+=telnet
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue