mirror of
https://github.com/vattam/BSDGames.git
synced 2025-12-21 03:14:50 +00:00
* New upstream release, whivh includes hack, back fron bsdgames-nonfree.
* Conflict and replace with old versions of bsdgames-nonfree that include
hack.
* Add hack to package description and menu file.
* Add in hack's two READ_ME files to binay package.
* Patched hack config.h as it is patched in bsdgames-nonfree.
* Unlike bsdgames-nonfree, put the help, hh, rumors, and data files in
/usr/share/games/bsdgames/hack, as the patched config.h makes it look
there.
* postinst moves over hack state files to new directory
* Patched phantasia to use strerror and not segfault if it cannot open the
var files. Closes: #187251 (patch sent upstream)
git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5206 a4a2c43b-8ac3-0310-8836-e0e880c912e2
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* $NetBSD: screen.c,v 1.15 2000/05/24 14:43:00 blymn Exp $ */
|
||||
/* $NetBSD: screen.c,v 1.16 2001/11/02 18:27:00 christos Exp $ */
|
||||
/* For Linux: still using old termcap interface from version 1.13. */
|
||||
|
||||
/*-
|
||||
@@ -182,13 +182,13 @@ scr_init()
|
||||
stop("cannot find your termcap");
|
||||
fill = combuf;
|
||||
{
|
||||
register struct tcsinfo *p;
|
||||
struct tcsinfo *p;
|
||||
|
||||
for (p = tcstrings; p->tcaddr; p++)
|
||||
*p->tcaddr = tgetstr(p->tcname, &fill);
|
||||
}
|
||||
{
|
||||
register struct tcninfo *p;
|
||||
struct tcninfo *p;
|
||||
|
||||
for (p = tcflags; p->tcaddr; p++)
|
||||
*p->tcaddr = tgetflag(p->tcname);
|
||||
@@ -292,8 +292,8 @@ scr_set()
|
||||
newtt = oldtt;
|
||||
newtt.c_lflag &= ~(ICANON|ECHO);
|
||||
newtt.c_oflag &= ~OXTABS;
|
||||
newtt.c_cc[VMIN] = 1; /* don't lag behind 3 keystrokes on sun */
|
||||
newtt.c_cc[VTIME] = 0; /* systems -- JEH */
|
||||
newtt.c_cc[VMIN] = 1;
|
||||
newtt.c_cc[VTIME] = 0;
|
||||
if (tcsetattr(0, TCSADRAIN, &newtt) < 0)
|
||||
stop("tcsetattr() fails");
|
||||
ospeed = cfgetospeed(&newtt);
|
||||
@@ -378,9 +378,9 @@ typedef cell regcell;
|
||||
void
|
||||
scr_update()
|
||||
{
|
||||
register cell *bp, *sp;
|
||||
register regcell so, cur_so = 0;
|
||||
register int i, ccol, j;
|
||||
cell *bp, *sp;
|
||||
regcell so, cur_so = 0;
|
||||
int i, ccol, j;
|
||||
sigset_t sigset, osigset;
|
||||
static const struct shape *lastshape;
|
||||
|
||||
@@ -490,12 +490,12 @@ scr_update()
|
||||
*/
|
||||
void
|
||||
scr_msg(s, set)
|
||||
register char *s;
|
||||
char *s;
|
||||
int set;
|
||||
{
|
||||
|
||||
if (set || CEstr == NULL) {
|
||||
register int l = strlen(s);
|
||||
int l = strlen(s);
|
||||
|
||||
moveto(Rows - 2, ((Cols - l) >> 1) - 1);
|
||||
if (set)
|
||||
|
||||
Reference in New Issue
Block a user