mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-24 09:13:37 +01:00
Don't clobber Kerberos5 telnet(1) and telnetd(8) with non-crypto versions.
This commit is contained in:
parent
2550f696d6
commit
2266b8c0d4
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114280
@ -38,10 +38,10 @@ SUBDIR+=named-xfer
|
||||
SUBDIR+=mail.local smrsh
|
||||
.endif
|
||||
|
||||
|
||||
.if defined(RELEASEDIR) || \
|
||||
(!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || \
|
||||
defined(NOCRYPT) || (defined(NOSECURE) && !defined(MAKE_KERBEROS4))
|
||||
(!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberos5)) || \
|
||||
defined(NOCRYPT) || \
|
||||
(defined(NOSECURE) && !defined(MAKE_KERBEROS5))
|
||||
# make release needs both
|
||||
SUBDIR+=telnetd
|
||||
.endif
|
||||
|
@ -217,9 +217,10 @@ SUBDIR= alias \
|
||||
ypwhich
|
||||
|
||||
.if defined(RELEASEDIR) || \
|
||||
(!exists(${.CURDIR}/../kerberosIV) && !exists(${.CURDIR}/../secure)) || \
|
||||
defined(NOCRYPT) || (defined(NOSECURE) && !defined(MAKE_KERBEROS4))
|
||||
# Releases need both this non-crypt telnet and the crypt telnet.
|
||||
(!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberos5)) || \
|
||||
defined(NOCRYPT) || \
|
||||
(defined(NOSECURE) && !defined(MAKE_KERBEROS5))
|
||||
# make release needs both
|
||||
SUBDIR+=telnet
|
||||
.endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user