ef315f7931
Originally, MKCRYPTO was introduced because the United States classified cryptography as a munition and restricted its export. The export controls were substantially relaxed fifteen years ago, and are essentially irrelevant for software with published source code. In the intervening time, nobody bothered to remove the option after its motivation -- the US export restriction -- was eliminated. I'm not aware of any other operating system that has a similar option; I expect it is mainly out of apathy for churn that we still have it. Today, cryptography is an essential part of modern computing -- you can't use the internet responsibly without cryptography. The position of the TNF board of directors is that TNF makes no representation that MKCRYPTO=no satisfies any country's cryptography regulations. My personal position is that the availability of cryptography is a basic human right; that any local laws restricting it to a privileged few are fundamentally immoral; and that it is wrong for developers to spend effort crippling cryptography to work around such laws. As proposed on tech-crypto, tech-security, and tech-userlevel to no objections: https://mail-index.netbsd.org/tech-crypto/2017/05/06/msg000719.html https://mail-index.netbsd.org/tech-security/2017/05/06/msg000928.html https://mail-index.netbsd.org/tech-userlevel/2017/05/06/msg010547.html P.S. Reviewing all the uses of MKCRYPTO in src revealed a lot of *bad* crypto that was conditional on it, e.g. DES in telnet... That should probably be removed too, but on the grounds that it is bad, not on the grounds that it is (nominally) crypto.
71 lines
1.9 KiB
Makefile
71 lines
1.9 KiB
Makefile
# $NetBSD: Makefile,v 1.275 2017/05/21 15:28:43 riastradh Exp $
|
|
# from: @(#)Makefile 5.20 (Berkeley) 6/12/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= ac accton acpitools altq apm apmd arp \
|
|
bad144 bootp bta2dpd btattach btconfig btdevctl bthcid btpand catman \
|
|
chroot cnwctl cpuctl crash \
|
|
dev_mkdb diskpart dumpfs dumplfs \
|
|
edquota eeprom envstat eshconfig etcupdate extattrctl \
|
|
flashctl fssconfig fusermount fwctl \
|
|
gpioctl grfconfig gspa \
|
|
hdaudioctl \
|
|
i2cscan ifwatchd inetd installboot intrctl iopctl iostat ipwctl irdaattach \
|
|
isdn isibootd iteconfig iwictl \
|
|
kgmon \
|
|
lastlogin ldpd link lmcconfig lockstat lpr \
|
|
mailwrapper makefs map-mbone mdconfig memswitch mlxctl mmcformat \
|
|
mopd mountd moused mrinfo mrouted mscdlabel mtrace mtree \
|
|
ndbootd ndiscvt netgroup_mkdb nfsd \
|
|
ofctl \
|
|
paxctl pcictl perfused psrset pstat pwd_mkdb postinstall \
|
|
powerd puffs \
|
|
quot quotacheck quotaon quotarestore \
|
|
rarpd rbootd rdate repquota rmt rpc.bootparamd rpc.lockd \
|
|
rpc.pcnfsd rpc.statd rpcbind rwhod \
|
|
sa screenblank sdpd service services_mkdb sesd schedctl \
|
|
sliplogin spray \
|
|
srtconfig sti sunlabel sup sysinst syslogd \
|
|
tadpolectl tcpdchk tcpdmatch tcpdrop timed tpctl tprof traceroute trpt \
|
|
unlink usbdevs user \
|
|
videomode vipw veriexecgen vnconfig \
|
|
wakeonlan wiconfig wlanctl wsconscfg wsfontload wsmoused wsmuxctl \
|
|
zdump zic
|
|
|
|
.if ${MKMAKEMANDB} != "no"
|
|
SUBDIR+= makemandb
|
|
.endif
|
|
|
|
.if (${MKYP} != "no")
|
|
SUBDIR+= rpc.yppasswdd ypbind yppoll ypserv ypset
|
|
.endif
|
|
|
|
.if ${TOOLCHAIN_MISSING} != "no"
|
|
SUBDIR+= mdsetimage
|
|
.endif
|
|
|
|
.if (${MKINET6} != "no")
|
|
SUBDIR+=faithd ifmcstat ip6addrctl ndp rip6query rtsold
|
|
.endif
|
|
.if (${USE_INET6} != "no")
|
|
SUBDIR+=mld6query route6d rtadvd traceroute6
|
|
.endif
|
|
|
|
# ATM PVC
|
|
SUBDIR+=pvcsif pvctxctl
|
|
|
|
SUBDIR+= racoon racoonctl
|
|
|
|
# NPF
|
|
.if (${MKNPF} != "no")
|
|
SUBDIR+=npf
|
|
.endif
|
|
|
|
# PF
|
|
.if (${MKPF} != "no")
|
|
SUBDIR+=pf
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|