diff --git a/Documentation/Developers/CHANGELOG-RENE b/Documentation/Developers/CHANGELOG-RENE index 9827a2b11..0aef5b4bf 100644 --- a/Documentation/Developers/CHANGELOG-RENE +++ b/Documentation/Developers/CHANGELOG-RENE @@ -4,6 +4,7 @@ - bumped version - Mathieu: fixed typo in Build-Pkg updated easytag and alsa-driver and added an init script for atd + - Juergen Sawinski: fixed rene/bsd-games *) 2003-10-01 (2.0.0-rc1 - 2.0.0-rc2) diff --git a/package/rene/bsd-games/delay_output-sym.patch b/package/rene/bsd-games/delay_output-sym.patch new file mode 100644 index 000000000..c05751928 --- /dev/null +++ b/package/rene/bsd-games/delay_output-sym.patch @@ -0,0 +1,36 @@ +diff -urN -x '*~' bsd-games-2.14/hack/extern.h bsd-games-2.14-fix/hack/extern.h +--- bsd-games-2.14/hack/extern.h 2003-03-28 11:51:54.000000000 +0100 ++++ bsd-games-2.14-fix/hack/extern.h 2003-10-02 03:56:10.000000000 +0200 +@@ -511,7 +511,7 @@ + void standoutend __P((void)); + void backsp __P((void)); + void bell __P((void)); +-void delay_output __P((void)); ++void delay_output_my __P((void)); + void cl_eos __P((void)); + + /* hack.timeout.c */ +diff -urN -x '*~' bsd-games-2.14/hack/hack.pri.c bsd-games-2.14-fix/hack/hack.pri.c +--- bsd-games-2.14/hack/hack.pri.c 2003-03-29 13:05:30.000000000 +0100 ++++ bsd-games-2.14-fix/hack/hack.pri.c 2003-10-02 03:56:22.000000000 +0200 +@@ -171,7 +171,7 @@ + return; + } + if (prevx >= 0 && cansee(prevx, prevy)) { +- delay_output(); ++ delay_output_my(); + prl(prevx, prevy); /* in case there was a monster */ + at(prevx, prevy, levl[prevx][prevy].scrsym); + } +diff -urN -x '*~' bsd-games-2.14/hack/hack.termcap.c bsd-games-2.14-fix/hack/hack.termcap.c +--- bsd-games-2.14/hack/hack.termcap.c 2003-03-29 13:05:30.000000000 +0100 ++++ bsd-games-2.14-fix/hack/hack.termcap.c 2003-10-02 03:56:30.000000000 +0200 +@@ -326,7 +326,7 @@ + } + + void +-delay_output() ++delay_output_my() + { + + /* delay 50 ms - could also use a 'nap'-system call */