From owner-freebsd-current Sat Mar 11 12:55:17 2000 Delivered-To: freebsd-current@freebsd.org Received: from afs.itc.keio.ac.jp (afs.itc.keio.ac.jp [131.113.212.3]) by hub.freebsd.org (Postfix) with SMTP id 5008B37BD69 for ; Sat, 11 Mar 2000 12:55:13 -0800 (PST) (envelope-from hosokawa@itc.keio.ac.jp) Received: (qmail 22634 invoked from network); 11 Mar 2000 20:55:12 -0000 Received: from ppp137.dialup.st.keio.ac.jp (HELO ringo.FromTo.Cc) (131.113.27.137) by afs.itc.keio.ac.jp with SMTP; 11 Mar 2000 20:55:12 -0000 Date: Sun, 12 Mar 2000 05:55:55 +0900 Message-ID: <86ln3pusys.wl@ringo.FromTo.Cc> From: Tatsumi Hosokawa To: current@FreeBSD.org, jkh@FreeBSD.org Subject: [20000307-SNAP] /etc/make.conf USA_RESIDENT and international crypto distribution User-Agent: Wanderlust/2.2.13 (Keep The Faith) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 8) (Bryce Canyon) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 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