NOGAMES -> NO_GAMES
------=_Part_4248_12490818.1110810484391
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Following FreeBSD's example, I'm going through and changing all NO*
make variables to NO_* for consistancy. This patch changes NOGAMES to
NO_GAMES. It is relative to the patch I just sent that removed the
two lines for PERL options. (make.conf manpage should be the only
common file). I can keep sending it as one switch at a time, or I can
do it all as one big patch if requested. Thanks
-Craig
--
-----------------------------------------------------------------------
Craig Dooley <xlnxminusx@gmail.com>
------=_Part_4248_12490818.1110810484391
Content-Type: text/plain; name="NOGAMES-NO_GAMES.patch.txt"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment; filename="NOGAMES-NO_GAMES.patch.txt"
Index: Makefile.inc1
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /home/dcvs/src/Makefile.inc1,v
retrieving revision 1.59
diff -u -r1.59 Makefile.inc1
--- Makefile.inc1=0913 Mar 2005 19:05:23 -0000=091.59
+++ Makefile.inc1=0914 Mar 2005 09:15:13 -0000
@@ -9,7 +9,7 @@
#=09-DNOCRYPT will prevent building of crypt versions
#=09-DNOMAN do not build the manual pages
#=09-DNOPROFILE do not build profiled libraries
-#=09-DNOGAMES do not go into games subdir
+#=09-DNO_GAMES do not go into games subdir
#=09-DNOSHARE do not go into share subdir
#=09-DNOINFO do not make or install info files
#=09-DNOLIBC_R do not build libc_r.
@@ -66,7 +66,7 @@
.if exists(${.CURDIR}/bin)
SUBDIR+=3D bin
.endif
-.if exists(${.CURDIR}/games) && !defined(NOGAMES)
+.if exists(${.CURDIR}/games) && !defined(NO_GAMES)
SUBDIR+=3D games
.endif
.if exists(${.CURDIR}/gnu)
@@ -759,7 +759,7 @@
# rpcgen:=09old rpcgen used a hardwired cpp path, newer OBJFORMAT_PATH
#=09=09envs are not compatible with older objformat binaries.
#
-.if exists(${.CURDIR}/games) && !defined(NOGAMES)
+.if exists(${.CURDIR}/games) && !defined(NO_GAMES)
_strfile=3D=09games/fortune/strfile
.endif
=20
@@ -799,7 +799,7 @@
# XXX we may be able to remove or consolidate this into bootstrap-tools
# now that we have the native helper (.nx/.no) infrastructure.
#
-.if exists(${.CURDIR}/games) && !defined(NOGAMES)
+.if exists(${.CURDIR}/games) && !defined(NO_GAMES)
_games=3D=09games/adventure games/hack games/phantasia
.endif
=20
Index: etc/defaults/make.conf
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /home/dcvs/src/etc/defaults/make.conf,v
retrieving revision 1.12
diff -u -r1.12 make.conf
--- etc/defaults/make.conf=091 Mar 2005 18:45:37 -0000=091.12
+++ etc/defaults/make.conf=0914 Mar 2005 09:16:02 -0000
@@ -102,6 +102,7 @@
#NO_CVS=3D=09true=09# do not build CVS
#NO_BIND=3D=09true=09# do not build BIND
#NO_FORTRAN=3D=09true=09# do not build g77 and related libraries
+#NO_GAMES=3D=09true=09# do not build games (games/ subdir)
#NO_I4B=3D=09true=09# do not build isdn4bsd package
#NO_IPFILTER=3D=09true=09# do not build IP Filter package
#NO_LPR=3D=09true=09# do not build lpr and related programs
@@ -114,7 +115,6 @@
#NO_SHAREDOCS=3D=09true=09# do not build the 4.4BSD legacy docs
#NO_X=3D=09=09true=09# do not compile in XWindows support (e.g. doscmd)
#NOCRYPT=3D=09true=09# do not build any crypto code
-#NOGAMES=3D=09true=09# do not build games (games/ subdir)
#NOINFO=3D=09true=09# do not make or install info files
#NOLIBC_R=3D=09true=09# do not build libc_r (re-entrant version of libc)
#NOMAN=3D=09=09true=09# do not build manual pages
Index: share/doc/usd/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /home/dcvs/src/share/doc/usd/Makefile,v
retrieving revision 1.3
diff -u -r1.3 Makefile
--- share/doc/usd/Makefile=0920 Sep 2004 22:03:16 -0000=091.3
+++ share/doc/usd/Makefile=0914 Mar 2005 09:16:28 -0000
@@ -13,7 +13,7 @@
SUBDIR=3D=09title contents 04.csh 05.dc 06.bc 07.mail 10.exref 11.vitut 12=
..vi \
=0913.viref 18.msdiffs 19.memacros 20.meref
=20
-.if exists(${.CURDIR}/../../../games) && !defined(NOGAMES)
+.if exists(${.CURDIR}/../../../games) && !defined(NO_GAMES)
SUBDIR+=3D30.rogue 31.trek
.endif
=20
Index: share/man/man5/make.conf.5
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /home/dcvs/src/share/man/man5/make.conf.5,v
retrieving revision 1.9
diff -u -r1.9 make.conf.5
--- share/man/man5/make.conf.5=0914 Mar 2005 09:10:17 -0000=091.9
+++ share/man/man5/make.conf.5=0914 Mar 2005 09:16:47 -0000
@@ -512,7 +512,7 @@
.It Va NOCRYPT
.Pq Vt bool
Set to not build any crypto code.
-.It Va NOGAMES
+.It Va NO_GAMES
.Pq Vt bool
Set to not build games.
.It Va NOINFO
------=_Part_4248_12490818.1110810484391--
討論串 (同標題文章)