Support MKCRYPTO_IDEA=yes, MKCRYPTO_MDC2=yes, MKCRYPTO_RC5=yes.
Resolves [install/18136].
This commit is contained in:
parent
078c5853f3
commit
0c6b3e795d
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: mi,v 1.650 2004/01/03 03:02:25 lukem Exp $
|
||||
# $NetBSD: mi,v 1.651 2004/01/03 13:31:38 lukem Exp $
|
||||
./usr/bin/addr2line comp-debug-bin
|
||||
./usr/bin/ar comp-util-bin
|
||||
./usr/bin/as comp-util-bin
|
||||
|
@ -1588,6 +1588,12 @@
|
|||
./usr/lib/libcrypt_p.a comp-c-proflib
|
||||
./usr/lib/libcrypto.a comp-c-lib
|
||||
./usr/lib/libcrypto_p.a comp-c-proflib
|
||||
./usr/lib/libcrypto_idea.a comp-c-lib crypto_idea
|
||||
./usr/lib/libcrypto_idea_p.a comp-c-proflib crypto_idea
|
||||
./usr/lib/libcrypto_mdc2.a comp-c-lib crypto_mdc2
|
||||
./usr/lib/libcrypto_mdc2_p.a comp-c-proflib crypto_mdc2
|
||||
./usr/lib/libcrypto_rc5.a comp-c-lib crypto_rc5
|
||||
./usr/lib/libcrypto_rc5_p.a comp-c-proflib crypto_rc5
|
||||
./usr/lib/libcurses.a comp-c-lib
|
||||
./usr/lib/libcurses_p.a comp-c-proflib
|
||||
./usr/lib/libdes.a comp-c-lib
|
||||
|
@ -1708,6 +1714,9 @@
|
|||
./usr/libdata/lint/llib-lcompat.ln comp-c-lintlib lint
|
||||
./usr/libdata/lint/llib-lcrypt.ln comp-c-lintlib lint
|
||||
./usr/libdata/lint/llib-lcrypto.ln comp-c-lintlib lint
|
||||
./usr/libdata/lint/llib-lcrypto_idea.ln comp-c-lintlib lint,crypto_idea
|
||||
./usr/libdata/lint/llib-lcrypto_mdc2.ln comp-c-lintlib lint,crypto_mdc2
|
||||
./usr/libdata/lint/llib-lcrypto_rc5.ln comp-c-lintlib lint,crypto_rc5
|
||||
./usr/libdata/lint/llib-lcurses.ln comp-c-lintlib lint
|
||||
./usr/libdata/lint/llib-ldes.ln comp-c-lintlib lint
|
||||
./usr/libdata/lint/llib-ledit.ln comp-c-lintlib lint
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: sets.subr,v 1.12 2004/01/03 12:23:11 lukem Exp $
|
||||
# $NetBSD: sets.subr,v 1.13 2004/01/03 13:31:38 lukem Exp $
|
||||
#
|
||||
|
||||
#
|
||||
|
@ -19,13 +19,16 @@
|
|||
# HAVE_GCC3
|
||||
# TOOLCHAIN_MISSING
|
||||
# OBJECT_FMT
|
||||
# MKCRYPTO_IDEA
|
||||
# MKCRYPTO_MDC2
|
||||
# MKCRYPTO_RC5
|
||||
# MKKERBEROS
|
||||
# MKKERBEROS4
|
||||
# MKLINT
|
||||
# MKPOSTFIX
|
||||
# MKSENDMAIL
|
||||
|
||||
MKVARS="MKKERBEROS MKKERBEROS4 MKLINT MKPOSTFIX MKSENDMAIL"
|
||||
MKVARS="MKCRYPTO_IDEA MKCRYPTO_MDC2 MKCRYPTO_RC5 MKKERBEROS MKKERBEROS4 MKLINT MKPOSTFIX MKSENDMAIL"
|
||||
|
||||
oIFS=$IFS
|
||||
IFS="
|
||||
|
@ -83,7 +86,7 @@ fi
|
|||
# In each file, a record consists of a path and a System Package name,
|
||||
# separated by whitespace. E.g.,
|
||||
#
|
||||
# # $NetBSD: sets.subr,v 1.12 2004/01/03 12:23:11 lukem Exp $
|
||||
# # $NetBSD: sets.subr,v 1.13 2004/01/03 13:31:38 lukem Exp $
|
||||
# . base-sys-root [keyword[,...]]
|
||||
# ./altroot base-sys-root
|
||||
# ./bin base-sys-root
|
||||
|
@ -100,13 +103,17 @@ fi
|
|||
# control if a record is printed; every keyword listed must be enabled
|
||||
# for the record to be printed. The following keywords are available:
|
||||
# dummy dummy entry (ignored)
|
||||
# obsolete file is obsolete, and only printed if
|
||||
# ${obsolete} != 0
|
||||
#
|
||||
# crypto_idea <bsd.own.mk> ${MKCRYPTO_IDEA} != no
|
||||
# crypto_mdc2 <bsd.own.mk> ${MKCRYPTO_MDC2} != no
|
||||
# crypto_rc5 <bsd.own.mk> ${MKCRYPTO_RC5} != no
|
||||
# kerberos <bsd.own.mk> ${MKKERBEROS} != no
|
||||
# kerberos4 <bsd.own.mk> ${MKKERBEROS4} != no
|
||||
# lint <bsd.own.mk> ${MKLINT} != no
|
||||
# postfix <bsd.own.mk> ${MKPOSTFIX} != no
|
||||
# sendmail <bsd.own.mk> ${MKSENDMAIL} != no
|
||||
# obsolete file is obsolete, and only printed if
|
||||
# ${obsolete} != 0
|
||||
#
|
||||
list_set_files()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue