Date: Sun, 12 Mar 2000 05:55:55 +0900 From: Tatsumi Hosokawa <hosokawa@itc.keio.ac.jp> To: current@FreeBSD.org, jkh@FreeBSD.org Subject: [20000307-SNAP] /etc/make.conf USA_RESIDENT and international crypto distribution Message-ID: <86ln3pusys.wl@ringo.FromTo.Cc>
next in thread | raw e-mail | index | archive | help
Hi. I'm testing 20000307-SNAP and I found that USA_RESIDENT is set to YES even if I installed from CD-ROMs with crypto distribution compiled from international crypto sources. How about adding something like following patch to sysinstall? (this patch has not tested yet) Index: dist.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/dist.c,v retrieving revision 1.174 diff -u -r1.174 dist.c --- dist.c 2000/03/08 14:54:19 1.174 +++ dist.c 2000/03/11 20:49:57 @@ -393,14 +393,22 @@ "DES-based passwords on other Unix systems. There will also be some\n" "differences in the type of RSA code you use.\n\n" "Please do NOT choose Yes at this point if you are outside the\n" - "United States and Canada and are installing from a U.S. FTP server.\n" + "United States and Canada and are installing from a U.S. FTP server\n" + "or CDROM with international crypto distribution.\n" "Instead, install everything but the crypto bits from the U.S. site\n" "and then switch to an international FTP server to install crypto on\n" "a second pass with the Custom Installation option.")) { if (!dmenuOpenSimple(&MenuCRYPTODistributions, FALSE)) i = DITEM_FAILURE; - else - USAResident = TRUE; + else { + if (!msgYesNo("Are you living in the United States or Canada?\n" + "(If you are not living in other countries and \n" + " installing from international CDROM, please\n" + " choose \"NO\")")) + USAResident = TRUE; + else + USAResident = FALSE; + } } else USAResident = FALSE; -- --------------------------- Tatsumi Hosokawa hosokawa@itc.keio.ac.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?86ln3pusys.wl>