home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / compsrcs / games / volume15 / gtetrs3 / patch2 < prev    next >
Encoding:
Internet Message Format  |  1993-01-26  |  5.4 KB

  1. Path: uunet!news.tek.com!master!saab!billr
  2. From: billr@saab.CNA.TEK.COM (Bill Randle)
  3. Newsgroups: comp.sources.games
  4. Subject: v15i047:  gtetris3 -  Generic Tetris for X11, V2.0.1, Patch2
  5. Message-ID: <4222@master.CNA.TEK.COM>
  6. Date: 18 Jan 93 19:18:52 GMT
  7. Sender: news@master.CNA.TEK.COM
  8. Lines: 147
  9. Approved: billr@saab.CNA.TEK.COM
  10. Xref: uunet comp.sources.games:1546
  11.  
  12. Submitted-by: "Qiang Alex Zhao" <azhao@cs.arizona.edu>
  13. Posting-number: Volume 15, Issue 47
  14. Archive-name: gtetris3/Patch2
  15. Patch-To: gtetris3: Volume 15, Issue 44-45
  16. Environment: X11R4/5, Xlib
  17.  
  18.     [This fixes another resource lookup bug and a minor Imakefile bug.]
  19.  
  20. #! /bin/sh
  21. # This is a shell archive.  Remove anything before this line, then unpack
  22. # it by saving it into a file and typing "sh file".  To overwrite existing
  23. # files, type "sh file -c".  You can also feed this as standard input via
  24. # unshar, or by typing "sh <file", e.g..  If this archive is complete, you
  25. # will see the following message at the end:
  26. #        "End of shell archive."
  27. # Contents:  patches02
  28. # Wrapped by billr@saab on Mon Jan 18 11:17:27 1993
  29. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  30. if test -f 'patches02' -a "${1}" != "-c" ; then 
  31.   echo shar: Will not clobber existing file \"'patches02'\"
  32. else
  33. echo shar: Extracting \"'patches02'\" \(3852 characters\)
  34. sed "s/^X//" >'patches02' <<'END_OF_FILE'
  35. Xdiff -c tetris.2.1.orig/Imakefile tetris.2.1/Imakefile
  36. X*** tetris.2.1.orig/Imakefile    Fri Jan 15 16:02:53 1993
  37. X--- tetris.2.1/Imakefile    Mon Jan 18 12:02:06 1993
  38. X***************
  39. X*** 32,39
  40. X  
  41. X  /**/##############################################################
  42. X  
  43. X!         DEFINES = -DSCOREFILE=\"$(SCOREFILE)\" $(RANDOM)
  44. X!        INCLUDES = -I.
  45. X  LOCAL_LIBRARIES = $(XLIB)
  46. X    SYS_LIBRARIES = -lm
  47. X             SRCS = tetris.c playing.c utils.c
  48. X
  49. X--- 32,38 -----
  50. X  
  51. X  /**/##############################################################
  52. X  
  53. X!         DEFINES = -I. -DSCOREFILE=\"$(SCOREFILE)\" $(RANDOM)
  54. X  LOCAL_LIBRARIES = $(XLIB)
  55. X    SYS_LIBRARIES = -lm
  56. X             SRCS = tetris.c playing.c utils.c
  57. Xdiff -c tetris.2.1.orig/README tetris.2.1/README
  58. X*** tetris.2.1.orig/README    Fri Jan 15 16:02:54 1993
  59. X--- tetris.2.1/README    Mon Jan 18 12:02:06 1993
  60. X***************
  61. X*** 1,5
  62. X      GENERIC TETRIS
  63. X!     ==============    Yet Another Tetris Game on X, V2.1.0
  64. X  
  65. X  
  66. X  WHY ANOTHER?
  67. X
  68. X--- 1,5 -----
  69. X      GENERIC TETRIS
  70. X!     ==============    Yet Another Tetris Game on X, V2.1.1
  71. X  
  72. X  
  73. X  WHY ANOTHER?
  74. X***************
  75. X*** 81,86
  76. X  
  77. X      Since the days of V1.8, I have got many responses over the net.
  78. X      Thanks go to people who helped me in improving the program.
  79. X  
  80. X    [Jan 15, 93]  V2.1.0: Fixed a resource look-up bug found by Kiyotaka
  81. X          Sakai <ksakai@mtl.t.u-tokyo.ac.jp>. Added "-u" option.
  82. X
  83. X--- 81,90 -----
  84. X  
  85. X      Since the days of V1.8, I have got many responses over the net.
  86. X      Thanks go to people who helped me in improving the program.
  87. X+ 
  88. X+   [Jan 18, 93]  V2.1.1: Fixed a resource look-up bug found by Peter
  89. X+         Kabal <kabal@inrs-telecom.uquebec.ca>, and Imakefile
  90. X+         problem found by Tong Zhou <tzhou@cse.ogi.edu>.
  91. X  
  92. X    [Jan 15, 93]  V2.1.0: Fixed a resource look-up bug found by Kiyotaka
  93. X          Sakai <ksakai@mtl.t.u-tokyo.ac.jp>. Added "-u" option.
  94. XCommon subdirectories: tetris.2.1.orig/X11 and tetris.2.1/X11
  95. XCommon subdirectories: tetris.2.1.orig/bitmaps and tetris.2.1/bitmaps
  96. Xdiff -c tetris.2.1.orig/tetris.c tetris.2.1/tetris.c
  97. X*** tetris.2.1.orig/tetris.c    Fri Jan 15 16:02:54 1993
  98. X--- tetris.2.1/tetris.c    Mon Jan 18 12:02:06 1993
  99. X***************
  100. X*** 74,80
  101. X  
  102. X  static int      opTableEntries = 16;
  103. X  static XrmOptionDescRec opTable[] = {
  104. X!     {"-s", ".scoresOnly", XrmoptionIsArg, (caddr_t) NULL},
  105. X      {"-l", "*startLevel", XrmoptionSepArg, (caddr_t) NULL},
  106. X      {"-p", "*preFilledLines", XrmoptionSepArg, (caddr_t) NULL},
  107. X      {"-showNext", "*showNext", XrmoptionNoArg, (caddr_t) "on"},
  108. X
  109. X--- 74,80 -----
  110. X  
  111. X  static int      opTableEntries = 16;
  112. X  static XrmOptionDescRec opTable[] = {
  113. X!     {"-s", "*scoresOnly", XrmoptionNoArg, (caddr_t) "yes"},
  114. X      {"-l", "*startLevel", XrmoptionSepArg, (caddr_t) NULL},
  115. X      {"-p", "*preFilledLines", XrmoptionSepArg, (caddr_t) NULL},
  116. X      {"-showNext", "*showNext", XrmoptionNoArg, (caddr_t) "on"},
  117. X***************
  118. X*** 105,111
  119. X      char           *argv[];
  120. X  {
  121. X      (void) fprintf(stderr,
  122. X!            "                 GENERIC TETRIS V2.1.0\n");
  123. X      (void) fprintf(stderr,
  124. X       "Copyright (C) 1992-93      Q. Alex Zhao, azhao@cs.arizona.edu\n");
  125. X      (void) fprintf(stderr,
  126. X
  127. X--- 105,111 -----
  128. X      char           *argv[];
  129. X  {
  130. X      (void) fprintf(stderr,
  131. X!            "                 GENERIC TETRIS V2.1.1\n");
  132. X      (void) fprintf(stderr,
  133. X       "Copyright (C) 1992-93      Q. Alex Zhao, azhao@cs.arizona.edu\n");
  134. X      (void) fprintf(stderr,
  135. Xdiff -c tetris.2.1.orig/tetris.man tetris.2.1/tetris.man
  136. X*** tetris.2.1.orig/tetris.man    Fri Jan 15 16:02:54 1993
  137. X--- tetris.2.1/tetris.man    Mon Jan 18 12:02:07 1993
  138. X***************
  139. X*** 1,4
  140. X! .TH TETRIS 6 "15 Jan 1993, V2.1.0" "Univ of Arizona"
  141. X  .SH NAME
  142. X  GENERIC TETRIS \- Yet Another Tetris Game on X
  143. X  .SH SYNOPSIS
  144. X
  145. X--- 1,4 -----
  146. X! .TH TETRIS 6 "18 Jan 1993, V2.1.1" "Univ of Arizona"
  147. X  .SH NAME
  148. X  GENERIC TETRIS \- Yet Another Tetris Game on X
  149. X  .SH SYNOPSIS
  150. X
  151. END_OF_FILE
  152. if test 3852 -ne `wc -c <'patches02'`; then
  153.     echo shar: \"'patches02'\" unpacked with wrong size!
  154. fi
  155. # end of 'patches02'
  156. fi
  157. echo shar: End of shell archive.
  158. exit 0
  159.