diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2003-05-01 19:38:15 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2003-05-01 19:38:15 +0000 |
| commit | a52672e93841a87b90b686e389c6862dff8d4ebe (patch) | |
| tree | f409dc1499fa26ed2b0e6494affe574c5ada224e | |
| parent | 2ab31b05bae57849874622ed5cc3ebaa898c54bb (diff) | |
Notes
| -rw-r--r-- | lib/Makefile | 2 | ||||
| -rw-r--r-- | libexec/Makefile | 2 | ||||
| -rw-r--r-- | usr.bin/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/Makefile b/lib/Makefile index 3bb7412d09982..9ada362aa2901 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -79,7 +79,7 @@ _libdisk= libdisk .if defined(RELEASEDIR) || \ (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberos5)) || \ - defined(NOCRYPT) || \ + defined(NOCRYPT) || defined(NO_OPENSSL) || \ (defined(NOSECURE) && !defined(MAKE_KERBEROS5)) _libtelnet= libtelnet .endif diff --git a/libexec/Makefile b/libexec/Makefile index aa3f26f0f252f..c3daa2f1f892c 100644 --- a/libexec/Makefile +++ b/libexec/Makefile @@ -40,7 +40,7 @@ SUBDIR+=mail.local smrsh .if defined(RELEASEDIR) || \ (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberos5)) || \ - defined(NOCRYPT) || \ + defined(NOCRYPT) || defined(NO_OPENSSL) || \ (defined(NOSECURE) && !defined(MAKE_KERBEROS5)) # make release needs both SUBDIR+=telnetd diff --git a/usr.bin/Makefile b/usr.bin/Makefile index a4d76321282e0..c44c47819f269 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -218,7 +218,7 @@ SUBDIR= alias \ .if defined(RELEASEDIR) || \ (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberos5)) || \ - defined(NOCRYPT) || \ + defined(NOCRYPT) || defined(NO_OPENSSL) || \ (defined(NOSECURE) && !defined(MAKE_KERBEROS5)) # make release needs both SUBDIR+=telnet |
