summaryrefslogtreecommitdiffstats
path: root/boggle
Commit message (Collapse)AuthorAgeFilesLines
* Fix merge conflictsHEADtrunkCameron Katri2021-05-051-6/+6
|
* games: remove trailing whitespace in *.c and *.hrillig2021-05-055-22/+22
|
* Use PREFIX nowCameron Katri2021-03-285-10/+12
|
* Get all the games compiling for iOSCameron Katri2021-02-226-58/+236023
|
* Create a new bsd.hostinit.mk file and put the build definitions for all hostchristos2018-05-012-4/+4
| | | | | | programs there; make all Makefiles that use bsd.hostprog.mk include it. Namely turn off MKREPRO and don't make lint, man pages, info files etc. Remove the Makefile.inc files that contained these same settings, and remove the settings from Makefile.host
* Double the threshold for crashing out with "too many words".dholland2016-06-251-5/+5
|
* use size_t instead of int for a lengthdholland2014-03-221-3/+3
|
* fix unused variable warningschristos2013-10-191-2/+3
|
* Factor out some common code; pass -Wstrict-overflow.dholland2012-10-131-23/+24
|
* NULL does not need a castplunky2011-08-312-6/+6
|
* Use __dead and __printflike instead of __attribute__.dholland2011-08-261-3/+3
|
* Fix a few of the games to use getprogname() in their usage() functions.pgoyette2010-12-051-3/+4
| | | | | | Suggested by Joerg. XXX There are probably many more that have their progname hard-coded, but XXX I'm not up for a wholesale roto-till at the moment.
* Since this game is installed as 'boggle', fix the usage() text to match.pgoyette2010-12-051-3/+3
|
* When using -lcurses, you also need -lterminfo.he2010-02-061-3/+3
| | | | This fixes the build for sun2, and also builds with LDSTATIC=-static, since archive libraries don't record inter-library dependencies.
* sprinkle static and prune some dead codedholland2009-08-124-46/+39
|
* Rename internal getline() function to get_line() so it doesroy2009-07-133-8/+8
| | | conflict with the soon to be added getline(3) libc function.
* if initscr() fails, exit with a message rather than crash in thedrochner2008-08-081-3/+6
| | | next curses call
* Remove the \n and tabs from the __COPYRIGHT() strings.lukem2008-07-201-4/+4
|
* convert __attribute__s to applicable cdefs.h macrosperry2007-12-151-5/+5
|
* PR# 4305: [dM] boggle uses very incomplete wordlist.jmcneill2006-09-241-2/+7
|
* PR/34175: Zafer Aydogan: touch the window to cause a refresh after helpchristos2006-08-092-18/+20
| | | Also use CTRL instead of \xxx
* fclose() open FILE * even though we are returning to fail anyway.rtr2006-03-181-3/+5
| | | silences coverity, CID 1590 / run 5
* Use standard AUTHORS section header. From YOMURA Masanori in private mailwiz2005-09-151-9/+9
| | | Sort sections if necessary. Use more/better markup.
* KNF and WARNS=3jmc2005-07-019-126/+81
|
* Fixed wrong use of the <ctype.h> functions by adding an explicit conversionrillig2005-04-191-3/+3
| | | to unsigned char. Approved by christos.
* Add (unsigned char) cast to ctype functionsdsl2004-11-052-8/+8
|
* Remove uses of __P.jsm2004-01-275-60/+60
|
* Rework how MAKEVERBOSE operates:lukem2003-10-211-7/+3
| | | | | | | | | | * Don't bother prefixing commands with a line of ${_MKCMD}\ and instead rely upon "make -s". This is less intrusive on all the Makefiles than the former. Idea from David Laight. * Rename the variables use to print messages. The scheme now is: _MKMSG_FOO Run _MKMSG 'foo' _MKTARGET_FOO Run _MKMSG_FOO ${.TARGET} From discussion with Alistair Crooks.
* rework to use the newer _MKMSGCREATE (et al) macroslukem2003-10-191-3/+3
|
* Support MAKEVERBOSE. (Some host tools still generate verbose runtime messages)lukem2003-10-191-1/+7
|
* Move UCB-licensed code from 4-clause to 3-clause licence.agc2003-08-0711-74/+30
| | | Patches provided by Joel Baker in PR 22269, verified by myself.
* Fix macro order, and quote question mark.wiz2003-06-271-2/+2
|
* Lots of minor fixes resulting from reading these man pages in detail.wiz2002-09-261-3/+2
|
* New sentences begin on new lines.wiz2002-09-261-3/+3
| | | Patch from Richard Elz, slightly improved by yours truly.
* Slight redux.mycroft2002-09-191-6/+6
|
* select() -> poll(), nanosleep()mycroft2002-09-191-12/+10
|
* some makefile de-lintinglukem2002-09-182-4/+6
|
* use NETBSDSRCDIR as appropriatelukem2002-09-181-2/+2
|
* There is no need to explcitly use ${.OBJDIR}; it's implied.thorpej2002-03-051-5/+5
|
* MKfoo=no -> NOfoo=tv2001-12-122-4/+4
|
* Ensure trailing newline is present on error and warning messages (lostjsm2001-08-291-3/+3
| | | in previous conversion from <err.h> functions to ISO C ones).
* mdoc'ify, and clean up in the process.wiz2001-04-021-51/+62
|
* fix nested externchristos2001-02-054-21/+20
|
* ${PRINTOBJDIR}ifysommerfeld2000-12-301-6/+5
|
* Don't use <sys/cdefs.h> __COPYRIGHT/__RCSID macros or <err.h> errsimonb2000-07-311-12/+11
| | | | | function for host programs - use portable ANSI constructs instead. Patches from Chris Demetriou.
* Don't use <sys/cdefs.h> __COPYRIGHT/__RCSID macros or <err.h> err/warnxsimonb2000-07-311-14/+13
| | | | | functions for host programs - use portable ANSI constructs instead. Patches from Chris Demetriou.
* Use setgid(), not setregid().mycroft2000-05-081-3/+3
|
* Greatly simplify these by using <bsd.hostprog.mk>. Should do the samesimonb2000-04-142-36/+10
| | | | for games/hack and games/monop and a few other places, but that requires making subdirs for the tools. One day...
* Fix doubled 'the' in comment.soren2000-03-131-3/+3
|
* More .mk file fallout. *sigh*mycroft2000-01-231-2/+2
|