From 0e821ab0d21b236f8e17b40ee25f40e04b03ea9b Mon Sep 17 00:00:00 2001 From: ache Date: Fri, 29 Sep 1995 19:56:05 +0000 Subject: [PATCH] Build secure libcrypt if available and allowed --- lib/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/Makefile b/lib/Makefile index a1d46e4d6cd3..56ca1a4324ee 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -10,11 +10,17 @@ SUBDIR=csu/${MACHINE} .endif # XXX MISSING: libmp libplot -SUBDIR+= libc libcompat libcom_err libcrypt libcurses libedit \ +SUBDIR+= libc libcompat libcom_err libcurses libedit \ libf2c libforms \ libkvm libmd libmytinfo libncurses libpcap libresolv librpcsvc \ libscsi libskey libss libtermcap libutil liby +.if !exists(../secure) || defined(NOSECURE) || defined(NOCRYPT) +SUBDIR+= libcrypt +.else +SUBDIR+= ../secure/lib/libcrypt +.endif + .if !exists(../secure) || defined(NOSECURE) SUBDIR+= libtelnet .else