| History log of /src/games/backgammon/teachgammon |
| Revision | Date | Author | Comments |
| 1.11 | 18-Sep-2002 |
lukem | some makefile de-linting
|
| 1.10 | 12-Dec-2001 |
tv | MKfoo=no -> NOfoo=
|
| 1.9 | 13-Feb-1999 |
lukem | convert from NOxxx= to MKxxx=no. include <bsd.own.mk> if testing a MKxxx variable.
|
| 1.8 | 10-Oct-1997 |
lukem | KNF & WARNSify, and only compile common_source once/* (compiles 25% faster)
|
| 1.7 | 08-May-1997 |
gwr | Back out the .PATH.c changes. The .depend problem (and others) will be fixed using the new .NOPATH make feature instead.
|
| 1.6 | 06-May-1997 |
gwr | Use .PATH.c: ...
|
| 1.5 | 21-Mar-1995 |
cgd | clean up import
|
| 1.4 | 23-May-1994 |
cgd | need -lcompat
|
| 1.3 | 01-Aug-1993 |
mycroft | Add RCS identifiers.
|
| 1.2 | 23-Mar-1993 |
cgd | got rid of unnecessary -lcompat and associated dependency
|
| 1.1 | 21-Mar-1993 |
cgd | branches: 1.1.1; Initial revision
|
| 1.1.1.2 | 21-Mar-1995 |
cgd | from Lite
|
| 1.1.1.1 | 21-Mar-1993 |
cgd | initial import of 386bsd-0.1 sources
|
| 1.8 | 12-Aug-2009 |
dholland | sprinkle static
|
| 1.7 | 01-Jan-2004 |
jsm | Make tutorial text match actual moves. From FreeBSD via OpenBSD. Fixes Debian bug 212478 from Jim W. Jaszewski <grok@sprint.ca>.
|
| 1.6 | 07-Aug-2003 |
agc | Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22269, verified by myself.
|
| 1.5 | 10-Feb-1999 |
hubertf | The patch below makes the game backgammon(6) use `const' where appropriate. It also removes some obsolete, unused code to check the number of users on the system (obsoleted by dm); removes a prototype for an unused function that was removed earlier; and removes a control character from one message that was I think intended to clear the screen on some particular terminal (though I can't find the comment to that effect in any of the BSD source trees I have handy) but no longer serves any useful purpose.
From PR 6580 by Joseph Myers <jsm28@cam.ac.uk>.
Also contains two more patches, one in teachgammon/tutor.h (by Joseph) and one in common_source/fancy.c (by me).
|
| 1.4 | 10-Oct-1997 |
lukem | KNF & WARNSify, and only compile common_source once/* (compiles 25% faster)
|
| 1.3 | 21-Mar-1995 |
cgd | clean up import
|
| 1.2 | 01-Aug-1993 |
mycroft | Add RCS identifiers.
|
| 1.1 | 21-Mar-1993 |
cgd | branches: 1.1.1; Initial revision
|
| 1.1.1.2 | 21-Mar-1995 |
cgd | from Lite
|
| 1.1.1.1 | 21-Mar-1993 |
cgd | initial import of 386bsd-0.1 sources
|
| 1.26 | 22-Aug-2024 |
rillig | backgammon: fix lint warnings
|
| 1.25 | 03-Feb-2019 |
mrg | branches: 1.25.12; - add or adjust /* FALLTHROUGH */ where appropriate - add __unreachable() after functions that can return but won't in this case, and thus can't be marked __dead easily
|
| 1.24 | 13-Sep-2013 |
joerg | branches: 1.24.26; GC descr and helpm.
|
| 1.23 | 13-Oct-2012 |
dholland | Remove ifdefs for V7 (as opposed to older) unix.
|
| 1.22 | 13-Oct-2012 |
dholland | Pass the move info around instead of using it as a global.
|
| 1.21 | 22-Mar-2010 |
mrg | branches: 1.21.6; 1.21.12; rename text() to wrtext(), aligning it with most other output routines, and avoiding a compile error on powerpc64.
XXX: this tries to make a ".text" symbol, which already exists...
|
| 1.20 | 12-Aug-2009 |
dholland | sprinkle static
|
| 1.19 | 20-Jul-2008 |
lukem | Remove the \n and tabs from the __COPYRIGHT() strings.
|
| 1.18 | 15-Dec-2007 |
perry | branches: 1.18.6; convert __attribute__s to applicable cdefs.h macros
|
| 1.17 | 01-Jul-2005 |
jmc | branches: 1.17.10; KNF and WARNS=3 fixes
|
| 1.16 | 15-Feb-2005 |
jsm | Cast last argument of execl to (char *).
Reviewed by <hubertf>.
|
| 1.15 | 08-Feb-2004 |
jsm | Mark unused parameters, nonreturning functions and format functions in the few cases not already marked.
|
| 1.14 | 07-Aug-2003 |
agc | Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22269, verified by myself.
|
| 1.13 | 06-Apr-2001 |
wiz | Negative exit code cleanup: Replace exit(-x) with exit(x). As seen on tech-userlevel.
|
| 1.12 | 05-Feb-2001 |
christos | remove redundant decl
|
| 1.11 | 08-May-2000 |
mycroft | Use setgid(), not setregid().
|
| 1.10 | 14-Aug-1999 |
tron | Adapt to change of "termcap.h".
|
| 1.9 | 19-Jul-1999 |
hubertf | As in previously sent patches: backgammon(6) does not need setgid games privileges from dm, so should revoke them on startup.
Patch submitteed in PR 8024 bye Joseph Myers <jsm28@cam.ac.uk>
|
| 1.8 | 10-Feb-1999 |
hubertf | The patch below makes the game backgammon(6) use `const' where appropriate. It also removes some obsolete, unused code to check the number of users on the system (obsoleted by dm); removes a prototype for an unused function that was removed earlier; and removes a control character from one message that was I think intended to clear the screen on some particular terminal (though I can't find the comment to that effect in any of the BSD source trees I have handy) but no longer serves any useful purpose.
From PR 6580 by Joseph Myers <jsm28@cam.ac.uk>.
Also contains two more patches, one in teachgammon/tutor.h (by Joseph) and one in common_source/fancy.c (by me).
|
| 1.7 | 15-Sep-1998 |
frueauf | Fix args processing of backgammon and teachgammon, closes pr 5345 by David Brownlee.
|
| 1.6 | 29-Aug-1998 |
hubertf | Use symbolic names for signals(!), open(2)-constants, ... Fix applied as per PR 6058 by Joseph Myers <jsm28@cam.ac.uk>
|
| 1.5 | 10-Oct-1997 |
lukem | KNF & WARNSify, and only compile common_source once/* (compiles 25% faster)
|
| 1.4 | 29-Apr-1995 |
mycroft | Use POSIX tty semantics.
|
| 1.3 | 21-Mar-1995 |
cgd | clean up import
|
| 1.2 | 01-Aug-1993 |
mycroft | Add RCS identifiers.
|
| 1.1 | 21-Mar-1993 |
cgd | branches: 1.1.1; Initial revision
|
| 1.1.1.2 | 21-Mar-1995 |
cgd | from Lite
|
| 1.1.1.1 | 21-Mar-1993 |
cgd | initial import of 386bsd-0.1 sources
|
| 1.17.10.1 | 09-Jan-2008 |
matt | sync with HEAD
|
| 1.18.6.1 | 18-Sep-2008 |
wrstuden | Sync with wrstuden-revivesa-base-2.
|
| 1.21.12.2 | 20-Aug-2014 |
tls | Rebase to HEAD as of a few days ago.
|
| 1.21.12.1 | 20-Nov-2012 |
tls | Resync to 2012-11-19 00:00:00 UTC
|
| 1.21.6.2 | 22-May-2014 |
yamt | sync with head.
for a reference, the tree before this commit was tagged as yamt-pagecache-tag8.
this commit was splitted into small chunks to avoid a limitation of cvs. ("Protocol error: too many arguments")
|
| 1.21.6.1 | 30-Oct-2012 |
yamt | sync with head
|
| 1.24.26.1 | 10-Jun-2019 |
christos | Sync with HEAD
|
| 1.25.12.1 | 02-Aug-2025 |
perseant | Sync with HEAD
|
| 1.8 | 24-Apr-2006 |
snj | It's "its."
|
| 1.7 | 07-Aug-2003 |
agc | Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22269, verified by myself.
|
| 1.6 | 25-Jul-1999 |
hubertf | Hardcore const poisoning Patch submitted by Joseph Myers <jsm28@cam.ac.uk> in PR 8057
|
| 1.5 | 10-Feb-1999 |
hubertf | The patch below makes the game backgammon(6) use `const' where appropriate. It also removes some obsolete, unused code to check the number of users on the system (obsoleted by dm); removes a prototype for an unused function that was removed earlier; and removes a control character from one message that was I think intended to clear the screen on some particular terminal (though I can't find the comment to that effect in any of the BSD source trees I have handy) but no longer serves any useful purpose.
From PR 6580 by Joseph Myers <jsm28@cam.ac.uk>.
Also contains two more patches, one in teachgammon/tutor.h (by Joseph) and one in common_source/fancy.c (by me).
|
| 1.4 | 10-Oct-1997 |
lukem | KNF & WARNSify, and only compile common_source once/* (compiles 25% faster)
|
| 1.3 | 21-Mar-1995 |
cgd | clean up import
|
| 1.2 | 01-Aug-1993 |
mycroft | Add RCS identifiers.
|
| 1.1 | 21-Mar-1993 |
cgd | branches: 1.1.1; Initial revision
|
| 1.1.1.2 | 21-Mar-1995 |
cgd | from Lite
|
| 1.1.1.1 | 21-Mar-1993 |
cgd | initial import of 386bsd-0.1 sources
|
| 1.10 | 19-Oct-2013 |
christos | fix unused variable warnings
|
| 1.9 | 22-Mar-2010 |
mrg | branches: 1.9.6; 1.9.12; rename text() to wrtext(), aligning it with most other output routines, and avoiding a compile error on powerpc64.
XXX: this tries to make a ".text" symbol, which already exists...
|
| 1.8 | 01-Jul-2005 |
jmc | KNF and WARNS=3 fixes
|
| 1.7 | 07-Aug-2003 |
agc | Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22269, verified by myself.
|
| 1.6 | 10-Feb-1999 |
hubertf | The patch below makes the game backgammon(6) use `const' where appropriate. It also removes some obsolete, unused code to check the number of users on the system (obsoleted by dm); removes a prototype for an unused function that was removed earlier; and removes a control character from one message that was I think intended to clear the screen on some particular terminal (though I can't find the comment to that effect in any of the BSD source trees I have handy) but no longer serves any useful purpose.
From PR 6580 by Joseph Myers <jsm28@cam.ac.uk>.
Also contains two more patches, one in teachgammon/tutor.h (by Joseph) and one in common_source/fancy.c (by me).
|
| 1.5 | 10-Oct-1997 |
lukem | KNF & WARNSify, and only compile common_source once/* (compiles 25% faster)
|
| 1.4 | 29-Apr-1995 |
mycroft | Use POSIX tty semantics.
|
| 1.3 | 21-Mar-1995 |
cgd | clean up import
|
| 1.2 | 01-Aug-1993 |
mycroft | Add RCS identifiers.
|
| 1.1 | 21-Mar-1993 |
cgd | branches: 1.1.1; Initial revision
|
| 1.1.1.2 | 21-Mar-1995 |
cgd | from Lite
|
| 1.1.1.1 | 21-Mar-1993 |
cgd | initial import of 386bsd-0.1 sources
|
| 1.9.12.1 | 20-Aug-2014 |
tls | Rebase to HEAD as of a few days ago.
|
| 1.9.6.1 | 22-May-2014 |
yamt | sync with head.
for a reference, the tree before this commit was tagged as yamt-pagecache-tag8.
this commit was splitted into small chunks to avoid a limitation of cvs. ("Protocol error: too many arguments")
|
| 1.13 | 22-Aug-2024 |
rillig | backgammon: fix lint warnings
|
| 1.12 | 02-May-2021 |
rillig | branches: 1.12.8; games: remove trailing whitespace in *.c and *.h
|
| 1.11 | 13-Oct-2012 |
dholland | Pass the move info around instead of using it as a global.
|
| 1.10 | 13-Oct-2012 |
dholland | Crack down on global variables with single-letter names.
|
| 1.9 | 22-Mar-2010 |
mrg | branches: 1.9.6; 1.9.12; rename text() to wrtext(), aligning it with most other output routines, and avoiding a compile error on powerpc64.
XXX: this tries to make a ".text" symbol, which already exists...
|
| 1.8 | 12-Aug-2009 |
dholland | sprinkle static
|
| 1.7 | 01-Jul-2005 |
jmc | KNF and WARNS=3 fixes
|
| 1.6 | 07-Aug-2003 |
agc | Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22269, verified by myself.
|
| 1.5 | 10-Feb-1999 |
hubertf | The patch below makes the game backgammon(6) use `const' where appropriate. It also removes some obsolete, unused code to check the number of users on the system (obsoleted by dm); removes a prototype for an unused function that was removed earlier; and removes a control character from one message that was I think intended to clear the screen on some particular terminal (though I can't find the comment to that effect in any of the BSD source trees I have handy) but no longer serves any useful purpose.
From PR 6580 by Joseph Myers <jsm28@cam.ac.uk>.
Also contains two more patches, one in teachgammon/tutor.h (by Joseph) and one in common_source/fancy.c (by me).
|
| 1.4 | 10-Oct-1997 |
lukem | KNF & WARNSify, and only compile common_source once/* (compiles 25% faster)
|
| 1.3 | 21-Mar-1995 |
cgd | clean up import
|
| 1.2 | 01-Aug-1993 |
mycroft | Add RCS identifiers.
|
| 1.1 | 21-Mar-1993 |
cgd | branches: 1.1.1; Initial revision
|
| 1.1.1.2 | 21-Mar-1995 |
cgd | from Lite
|
| 1.1.1.1 | 21-Mar-1993 |
cgd | initial import of 386bsd-0.1 sources
|
| 1.9.12.1 | 20-Nov-2012 |
tls | Resync to 2012-11-19 00:00:00 UTC
|
| 1.9.6.1 | 30-Oct-2012 |
yamt | sync with head
|
| 1.12.8.1 | 02-Aug-2025 |
perseant | Sync with HEAD
|
| 1.11 | 13-Oct-2012 |
dholland | Pass the move info around instead of using it as a global.
|
| 1.10 | 26-Aug-2011 |
dholland | branches: 1.10.2; 1.10.8; Use __dead and __printflike instead of __attribute__.
|
| 1.9 | 12-Aug-2009 |
dholland | sprinkle static
|
| 1.8 | 27-Jan-2004 |
jsm | Remove uses of __P.
|
| 1.7 | 07-Aug-2003 |
agc | Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22269, verified by myself.
|
| 1.6 | 10-Feb-1999 |
hubertf | The patch below makes the game backgammon(6) use `const' where appropriate. It also removes some obsolete, unused code to check the number of users on the system (obsoleted by dm); removes a prototype for an unused function that was removed earlier; and removes a control character from one message that was I think intended to clear the screen on some particular terminal (though I can't find the comment to that effect in any of the BSD source trees I have handy) but no longer serves any useful purpose.
From PR 6580 by Joseph Myers <jsm28@cam.ac.uk>.
Also contains two more patches, one in teachgammon/tutor.h (by Joseph) and one in common_source/fancy.c (by me).
|
| 1.5 | 13-Sep-1998 |
hubertf | mark non-returning functions (PR#6144 by Joseph Myers <jsm28@cam.ac.uk>)
|
| 1.4 | 10-Oct-1997 |
lukem | KNF & WARNSify, and only compile common_source once/* (compiles 25% faster)
|
| 1.3 | 21-Mar-1995 |
cgd | clean up import
|
| 1.2 | 01-Aug-1993 |
mycroft | Add RCS identifiers.
|
| 1.1 | 21-Mar-1993 |
cgd | branches: 1.1.1; Initial revision
|
| 1.1.1.2 | 21-Mar-1995 |
cgd | from Lite
|
| 1.1.1.1 | 21-Mar-1993 |
cgd | initial import of 386bsd-0.1 sources
|
| 1.10.8.1 | 20-Nov-2012 |
tls | Resync to 2012-11-19 00:00:00 UTC
|
| 1.10.2.1 | 30-Oct-2012 |
yamt | sync with head
|