aboutsummaryrefslogtreecommitdiff
path: root/games/hack
Commit message (Collapse)AuthorAgeFilesLines
* Deorbit complete. We dont build these anymore, so into the attic they go.Mark Murray2002-10-2190-20838/+0
| | | | Notes: svn path=/head/; revision=105614
* Replace various spelling with FALLTHROUGH which is lint()ablePhilippe Charnier2002-08-259-24/+42
| | | | Notes: svn path=/head/; revision=102411
* Drop support for COPY, -c has been the default mode of install(1)Ruslan Ermilov2002-07-291-2/+2
| | | | | | | | | for a long time now. Approved by: bde Notes: svn path=/head/; revision=100872
* s/${INSTALL} -c/${INSTALL} ${COPY}/Ruslan Ermilov2002-07-181-2/+2
| | | | Notes: svn path=/head/; revision=100313
* Comment out extra tokens after #else and #endif.Dag-Erling Smørgrav2002-05-2339-154/+161
| | | | Notes: svn path=/head/; revision=97153
* End of comment was missing at FreeBSD Id line. Switch to FBSDID.Philippe Charnier2002-04-121-1/+4
| | | | Notes: svn path=/head/; revision=94552
* Install files via FILES.Ruslan Ermilov2001-12-171-5/+4
| | | | Notes: svn path=/head/; revision=88058
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.Dima Dorfman2001-07-091-2/+1
| | | | Notes: svn path=/head/; revision=79454
* Remove #if 0'd code. It turned up on my MAXPATHLEN + 1 sweep.Warner Losh2001-06-051-35/+0
| | | | Notes: svn path=/head/; revision=77746
* - Backout botched attempt to intoduce MANSECT feature.Ruslan Ermilov2001-03-261-0/+1
| | | | | | | - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74814
* Set the default manual section for games/ to 6.Ruslan Ermilov2001-03-201-1/+0
| | | | Notes: svn path=/head/; revision=74528
* Format string auditingKris Kennaway2000-11-261-1/+1
| | | | Notes: svn path=/head/; revision=69197
* Don't call printf with no format string.Kris Kennaway2000-07-101-1/+1
| | | | Notes: svn path=/head/; revision=62868
* 1. Don't overwrite scorefiles if they already exist.Bill Fumerola1999-12-101-2/+5
| | | | | | | | | | PR: bin/13068 Submitted by: Dominic Mitchell <Dom.Mitchell@palmerharvey.co.uk> 2. Sprinkle $FreeBSD$ around. Notes: svn path=/head/; revision=54416
* copyright/sccsid/rcsid cleanup.Bill Fumerola1999-11-301-2/+4
| | | | Notes: svn path=/head/; revision=53920
* Add type int to those variables without a type. This is caused by theMarcel Moolenaar1999-11-1636-135/+135
| | | | | | | | frequent use of ``register var'' instead of ``register int var'' and the removal of the register hint in the previous commit. Notes: svn path=/head/; revision=53211
* Sync our register usage with NetBSD's (non-)usage.Bill Fumerola1999-11-1653-940/+940
| | | | Notes: svn path=/head/; revision=53210
* Add $FreeBSD$Bill Fumerola1999-11-1653-0/+55
| | | | Notes: svn path=/head/; revision=53209
* Move the #include directive up one line and out of the function body.Marcel Moolenaar1999-09-121-1/+2
| | | | Notes: svn path=/head/; revision=51194
* Avoid ambigious if() if() else().Bill Fumerola1999-09-072-2/+4
| | | | Notes: svn path=/head/; revision=51047
* Attempt to fix world breakage for the NOSHARED=yes case. delay_output()Bruce Evans1999-09-042-4/+4
| | | | | | | | | | is in both hack and libncurses, and the elf static linker can't handle the duplication. This is probably the correct fix for hack (it makes it clear that the ospeed stuff can go away), but its effect on hack has not been tested, and the linker bug remains open. Notes: svn path=/head/; revision=50908
* The ospeed hackery was disabled a while ago, finish the job.Peter Wemm1999-08-302-4/+4
| | | | Notes: svn path=/head/; revision=50625
* $Id$ -> $FreeBSD$Peter Wemm1999-08-271-1/+1
| | | | Notes: svn path=/head/; revision=50472
* Create score files root:games rather than bin:{games,bin}.David E. O'Brien1999-06-231-4/+4
| | | | | | | | related-to-PR: bin/8440 Submitted by: Stephen J. Roznowski sjr@home.net Notes: svn path=/head/; revision=48123
* Fixed CLEANFILES.Bruce Evans1998-12-271-1/+1
| | | | Notes: svn path=/head/; revision=42087
* Build the makedefs program static to avoid trying to use the sharedJohn Birrell1998-08-151-1/+1
| | | | | | | loader before it has been installed in an aout to elf transition build. Notes: svn path=/head/; revision=38325
* o Fix Y2K buffer overflow.Warner Losh1998-07-261-4/+2
| | | | | | | o Fix zero filling bug in all years % 100 < 10. Notes: svn path=/head/; revision=37869
* Added a `build-tools' target for internal tools.Bruce Evans1998-07-071-5/+7
| | | | | | | | | | | | Honor LDFLAGS for building internal tools. Always build intermediate object files explicitly so that binaries don't change when they are rebuilt. Fixed some style bugs. Notes: svn path=/head/; revision=37458
* Add #include string.h to get prototypes.John Birrell1998-05-091-0/+1
| | | | Notes: svn path=/head/; revision=35889
* Remove #define NULL because stdio.h does that.John Birrell1998-05-091-1/+0
| | | | Notes: svn path=/head/; revision=35877
* Add #include string.h to get prototypes.John Birrell1998-05-091-0/+1
| | | | Notes: svn path=/head/; revision=35876
* Use Id instead of Header.Philippe Charnier1998-04-011-1/+1
| | | | Notes: svn path=/head/; revision=34978
* Don't use the FreeBSD misfeature DPSRCS or give explicit dependenciesBruce Evans1998-03-061-4/+2
| | | | | | | | on generated headers. Just put generated headers in SRCS so that bsd.*.mk can generate better dependencies. Notes: svn path=/head/; revision=34082
* Use include for malloc declarationAndrey A. Chernov1997-09-241-3/+2
| | | | Notes: svn path=/head/; revision=29822
* Oops, to many zeroes was in usleep argAndrey A. Chernov1997-09-241-1/+1
| | | | Notes: svn path=/head/; revision=29814
* Remove setuid, uneeded nowAndrey A. Chernov1997-09-242-2/+0
| | | | Notes: svn path=/head/; revision=29810
* Make hack non-setuid back, it is possible because hackdir hierarchyAndrey A. Chernov1997-09-241-7/+1
| | | | | | | are not more readable/writeable by anyone except "games" group Notes: svn path=/head/; revision=29808
* Includes cleanupAndrey A. Chernov1997-09-246-18/+27
| | | | | | | | | | | | Fix nonull flag detecting from termcap Use usleep to handle nonull case Prevent overflow on genocided getenv Install most files not owned by games.games to prevent data modifications Fix path for gethdate() Notes: svn path=/head/; revision=29803
* Use SUIDGAME hook nowAndrey A. Chernov1997-09-241-4/+2
| | | | Notes: svn path=/head/; revision=29802
* Since hack suid now, add -fschg to install flags to prevent thisAndrey A. Chernov1997-09-241-0/+1
| | | | | | | binary to be overwritted Notes: svn path=/head/; revision=29800
* Make hack suid "games" (additionly to sgid "games" as run),Andrey A. Chernov1997-09-243-4/+16
| | | | | | | | | | | it is needed for savegames and bones, they intendent to not be altered by user and can't be pre-created as scorefile. Clear savegames on install: target too, not only bones Install rumors not readable by all. Cleanup includes a little. Notes: svn path=/head/; revision=29795
* Simplify revokeAndrey A. Chernov1997-09-242-2/+0
| | | | Notes: svn path=/head/; revision=29790
* Use srandomdevAndrey A. Chernov1997-09-243-10/+8
| | | | Notes: svn path=/head/; revision=29771
* Do not install 3 files writeable by all (666), change it to 664Andrey A. Chernov1997-09-241-3/+3
| | | | Notes: svn path=/head/; revision=29754
* Change games from setuid games to setgid games.Eivind Eklund1997-09-012-4/+7
| | | | | | | | Reviewed by: maybe@yes.no Obtained from: OpenBSD (mostly deraadt@openbsd.org) Notes: svn path=/head/; revision=28979
* 444 -> ${NOBINMODE}Wolfram Schneider1997-02-091-2/+3
| | | | | | | | /usr/share -> ${SHAREDIR} /usr/games -> ${BINDIR} Notes: svn path=/head/; revision=22449
* Install the rumors file.Jordan K. Hubbard1996-10-191-0/+2
| | | | | | | | Submitted-By: koshy@india.hp.com Closes-PR#: 1883 Notes: svn path=/head/; revision=19034
* The Makefile assumed that builder had '.' in it's path, which is aNate Williams1996-05-152-229/+6
| | | | | | | | | | | | security hole for root. Fix this oversight and clean up the build of 'hack.onames.h' which should be built everytime. Tested with/without obj directories and .depend files. Noticed by: "Christoph P. Kukulies" <kuku@gilberto.physik.rwth-aachen.de> Notes: svn path=/head/; revision=15778
* Add missing entries to speedtableAndrey A. Chernov1995-08-041-1/+1
| | | | Notes: svn path=/head/; revision=9899
* Change `install' to `${INSTALL}' so that default install flags can beBruce Evans1995-07-251-3/+3
| | | | | | | specified in the top level Makefiles. Notes: svn path=/head/; revision=9701