diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1998-07-27 22:30:57 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1998-07-27 22:30:57 +0000 |
commit | d21e433e168d5aae7162760307f7e37a116731c9 (patch) | |
tree | 8edf6c6e28c59fe6fa79f66d87b8af7117f28012 /x11/XFree86-4-libraries | |
parent | Make this port be installable twice. (diff) |
Don't propose to build with secure RPC on 2.x systems - this is a FreeBSD-3.x
feature.
Notes
Notes:
svn path=/head/; revision=12171
Diffstat (limited to 'x11/XFree86-4-libraries')
-rw-r--r-- | x11/XFree86-4-libraries/scripts/configure | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/x11/XFree86-4-libraries/scripts/configure b/x11/XFree86-4-libraries/scripts/configure index f2e61f73a8d9..8be93543648e 100644 --- a/x11/XFree86-4-libraries/scripts/configure +++ b/x11/XFree86-4-libraries/scripts/configure @@ -172,9 +172,10 @@ if [ $answ = YES ]; then echo "#define ForceNormalLib YES" >> $F fi +if [ ! `uname -r|grep ^2` ]; then cat <<'END' - FreeBSD-3.x has support for Secure RPC. DO NOT ENABLE THIS ON FreeBSD-2.* !! + FreeBSD-3.x has support for Secure RPC. While this scheme is not used for general purpose encryption, some countries restrict the use of strong cryptography. @@ -184,7 +185,7 @@ yesno "Build with Secure RPC? [YES] " if [ $answ = YES ]; then echo "#define HasSecureRPC YES" >> $F fi - +fi cat <<'END' MIT supplies an authentication mechanism that relies upon DES, this is |