mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Build secure libcrypt if available and allowed
This commit is contained in:
parent
86d61837c8
commit
e6af2dc882
1 changed files with 7 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue