diff options
author | markm <markm@FreeBSD.org> | 1998-03-19 22:57:20 +0800 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1998-03-19 22:57:20 +0800 |
commit | 75a3af9916fdfeb409e4662436de8adef2b2fc9a (patch) | |
tree | 5d58caf7125b72232cbea3dcdde835c5fb1f313f /x11/XFree86-4-clients/Makefile | |
parent | 832deefaec77702881ccdfb47c5b3685bbb2378a (diff) | |
download | freebsd-ports-gnome-75a3af9916fdfeb409e4662436de8adef2b2fc9a.tar.gz freebsd-ports-gnome-75a3af9916fdfeb409e4662436de8adef2b2fc9a.tar.zst freebsd-ports-gnome-75a3af9916fdfeb409e4662436de8adef2b2fc9a.zip |
Enable all sorts of useful security features:
o XDM-AUTHORIZATION-1 is more automated for the non-USA case.
o PST's KerberosIV patches are reinstated for XDM. This is NOT
a full-blown KerberosIV implementation for X - this will
just get you a TGT when you log in - THATS ALL!
o Enable compilation of SecureRPC. The use of SecureRPC at the
moment is frought with danger! I have no idea how safe or
good the implementation is. Enable at your own peril!! (Secure
RPC is only available for those folk using 3.0-Current).
Also allow XF86Setup to use TK-8.0.
OK'ed By: JMZ
Diffstat (limited to 'x11/XFree86-4-clients/Makefile')
-rw-r--r-- | x11/XFree86-4-clients/Makefile | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/x11/XFree86-4-clients/Makefile b/x11/XFree86-4-clients/Makefile index 336feb66a126..291015e30d33 100644 --- a/x11/XFree86-4-clients/Makefile +++ b/x11/XFree86-4-clients/Makefile @@ -3,7 +3,7 @@ # Date created: 5 January 1995 # Whom: jmz # -# $Id: Makefile,v 1.37 1997/12/04 10:52:50 asami Exp $ +# $Id: Makefile,v 1.38 1998/03/08 17:13:18 jmz Exp $ # DISTNAME= xc @@ -25,6 +25,27 @@ ALL_TARGET= World INSTALL_TARGET= install install.man DIST_SUBDIR= xc +.if defined(XDM_DES) && (${USA_RESIDENT} != YES && ${USA_RESIDENT} != NO) +pre-fetch: + @${ECHO} + @${ECHO} You must set variable USA_RESIDENT to YES or NO. + @false +.elif defined(USA_RESIDENT) +.if ${USA_RESIDENT} == NO +pre-fetch: +MASTER_SITES+= ftp://psych.psy.uq.oz.au/pub/X11R5/ \ + ftp://ftp.internat.freebsd.org/pub/FreeBSD/X11-Crypto/ \ + ftp://ftp3.za.freebsd.org/pub/FreeBSD/X11-Crypto/ +DISTFILES+= Wraphelp.c +IGNOREFILES= Wraphelp.c +.endif +.if ${USA_RESIDENT} == YES +pre-fetch: + @${ECHO} + @${ECHO} Assuming that you have fetched a USA-Legal Wraphelp.c. +.endif +.endif + pre-install: ${MKDIR} /usr/X11R6 post-install: |