Build secure libcrypt if available and allowed

This commit is contained in:
Andrey A. Chernov 1995-09-29 19:56:05 +00:00
parent 86d61837c8
commit e6af2dc882
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=11071

View File

@ -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