aboutsummaryrefslogtreecommitdiff
path: root/secure/lib/Makefile
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2000-02-24 18:59:34 +0000
committerMark Murray <markm@FreeBSD.org>2000-02-24 18:59:34 +0000
commitc9f2d5f4831961e16b54b2893d6ef13b760eceaf (patch)
tree0df8dd5fd1a48841958caf7ccede682338a1fb4e /secure/lib/Makefile
parent93f80500f6b990e7fc32c30fddd2deb57265c3be (diff)
downloadsrc-c9f2d5f4831961e16b54b2893d6ef13b760eceaf.tar.gz
src-c9f2d5f4831961e16b54b2893d6ef13b760eceaf.zip
Build everything properly. This means:
o Don't b uild libdes. o Crypto is now housed in libcrypto (with a compatability symlink to libdes) o RSA may depend on RSAREF at your locale. o OpenSSH is now a part of the base system.
Notes
Notes: svn path=/head/; revision=57437
Diffstat (limited to 'secure/lib/Makefile')
-rw-r--r--secure/lib/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/secure/lib/Makefile b/secure/lib/Makefile
index 0180a3a72102..75f9b0517714 100644
--- a/secure/lib/Makefile
+++ b/secure/lib/Makefile
@@ -1,11 +1,17 @@
# $FreeBSD$
-SUBDIR= libcipher libdes
+SUBDIR= libcipher
.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
SUBDIR+=libtelnet
.endif
.if !defined(NO_OPENSSL)
-SUBDIR+=libcrypto librsaglue libssl
+SUBDIR+=libcrypto libssl
+.if defined(RSAREF) && ${RSAREF} == YES
+SUBDIR+=librsaglue
+.endif
+.endif
+.if !defined(NO_OPENSSH)
+SUBDIR+=libssh
.endif
.include <bsd.subdir.mk>