mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
2.2 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/rene/bsd-games/delay_output-sym.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. diff -urN -x '*~' bsd-games-2.14/hack/extern.h bsd-games-2.14-fix/hack/extern.h
  23. --- bsd-games-2.14/hack/extern.h 2003-03-28 11:51:54.000000000 +0100
  24. +++ bsd-games-2.14-fix/hack/extern.h 2003-10-02 03:56:10.000000000 +0200
  25. @@ -511,7 +511,7 @@
  26. void standoutend __P((void));
  27. void backsp __P((void));
  28. void bell __P((void));
  29. -void delay_output __P((void));
  30. +void delay_output_my __P((void));
  31. void cl_eos __P((void));
  32. /* hack.timeout.c */
  33. diff -urN -x '*~' bsd-games-2.14/hack/hack.pri.c bsd-games-2.14-fix/hack/hack.pri.c
  34. --- bsd-games-2.14/hack/hack.pri.c 2003-03-29 13:05:30.000000000 +0100
  35. +++ bsd-games-2.14-fix/hack/hack.pri.c 2003-10-02 03:56:22.000000000 +0200
  36. @@ -171,7 +171,7 @@
  37. return;
  38. }
  39. if (prevx >= 0 && cansee(prevx, prevy)) {
  40. - delay_output();
  41. + delay_output_my();
  42. prl(prevx, prevy); /* in case there was a monster */
  43. at(prevx, prevy, levl[prevx][prevy].scrsym);
  44. }
  45. diff -urN -x '*~' bsd-games-2.14/hack/hack.termcap.c bsd-games-2.14-fix/hack/hack.termcap.c
  46. --- bsd-games-2.14/hack/hack.termcap.c 2003-03-29 13:05:30.000000000 +0100
  47. +++ bsd-games-2.14-fix/hack/hack.termcap.c 2003-10-02 03:56:30.000000000 +0200
  48. @@ -326,7 +326,7 @@
  49. }
  50. void
  51. -delay_output()
  52. +delay_output_my()
  53. {
  54. /* delay 50 ms - could also use a 'nap'-system call */