home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume11 / tinymud2 / sysv_diffs / sysv.diffs < prev   
Text File  |  1991-04-03  |  5KB  |  189 lines

  1. *** joinspl.sh    Mon Mar  4 14:42:29 1991
  2. --- joinspl.sh    Mon Jan 28 09:56:47 1991
  3. ***************
  4. *** 10,15 ****
  5.   #
  6.   # build tinymud.ps from its three parts
  7.   #
  8. ! creating tinymud.ps
  9.   cat tinymud.ps.xa? >tinymud.ps
  10.   rm tinymud.ps.xa?
  11. --- 10,15 ----
  12.   #
  13.   # build tinymud.ps from its three parts
  14.   #
  15. ! echo creating tinymud.ps
  16.   cat tinymud.ps.xa? >tinymud.ps
  17.   rm tinymud.ps.xa?
  18. *** fifoiface.c    Mon Mar  4 14:50:01 1991
  19. --- fifoiface.c    Mon Mar  4 14:50:45 1991
  20. ***************
  21. *** 16,22 ****
  22.   #include <sys/types.h>
  23.   #include <sys/file.h>
  24.   #include <sys/stat.h>
  25. ! #include <sys/select.h>
  26.   #include <signal.h>
  27.   #include <sys/ioctl.h>
  28.   #include <fcntl.h>
  29. --- 16,22 ----
  30.   #include <sys/types.h>
  31.   #include <sys/file.h>
  32.   #include <sys/stat.h>
  33. ! #include "fakeselect.h"
  34.   #include <signal.h>
  35.   #include <sys/ioctl.h>
  36.   #include <fcntl.h>
  37. ***************
  38. *** 178,187 ****
  39.       fd_set r, w, x;
  40.   
  41.       if (timeout) sec=timeout->tv_sec+(timeout->tv_usec+500)/1000;
  42. !     r= *rfds; w= *wfds; x= *xfds;
  43.   
  44.       while(1) {
  45. !         *rfds=r; *wfds=w; *xfds=x;
  46.           for(maxfd=fd=0;fd<maxd;++fd) {
  47.               if(FD_ISSET(fd,rfds)) {
  48.                   if (stat(fifonames[fd],&sbuf) != 0)
  49. --- 178,187 ----
  50.       fd_set r, w, x;
  51.   
  52.       if (timeout) sec=timeout->tv_sec+(timeout->tv_usec+500)/1000;
  53. !     r= *rfds; w= *wfds;
  54.   
  55.       while(1) {
  56. !         *rfds=r; *wfds=w;
  57.           for(maxfd=fd=0;fd<maxd;++fd) {
  58.               if(FD_ISSET(fd,rfds)) {
  59.                   if (stat(fifonames[fd],&sbuf) != 0)
  60. *** rename.c    Mon Mar  4 14:43:45 1991
  61. --- rename.c    Mon Feb  4 09:51:21 1991
  62. ***************
  63. *** 8,14 ****
  64.       char buf[1024];
  65.       int n;
  66.       (void)unlink(new);
  67. !     if (link(old, new) == -1 && errno != EXDEV)
  68.           return(-1);
  69.       if((fd1=open(old,0)) == -1)
  70.           return(-1);
  71. --- 8,18 ----
  72.       char buf[1024];
  73.       int n;
  74.       (void)unlink(new);
  75. !     if (link(old, new) == 0) {
  76. !         unlink(old);
  77. !         return 0;
  78. !     }
  79. !     else if (errno != EXDEV)
  80.           return(-1);
  81.       if((fd1=open(old,0)) == -1)
  82.           return(-1);
  83. *** Makefile    Mon Mar  4 14:44:17 1991
  84. --- Makefile    Wed Feb  6 09:54:21 1991
  85. ***************
  86. *** 9,16 ****
  87.   
  88.   # GCC:
  89.   CC=gcc
  90. ! OPTIM= -g -W -Wreturn-type -Wunused -Wcomment -Wwrite-strings
  91. ! OPTIM= -W -Wreturn-type -Wunused -Wcomment -Wwrite-strings
  92.   
  93.   # Systems with 'cc' built from GCC (IBM RT, NeXT):
  94.   #CC=cc
  95. --- 9,17 ----
  96.   
  97.   # GCC:
  98.   CC=gcc
  99. ! #OPTIM= -g -W -Wreturn-type -Wunused -Wcomment -Wwrite-strings
  100. ! OPTIM= -O -W -Wreturn-type -Wunused -Wcomment -Wwrite-strings -s
  101. ! LIBS= -lc_s
  102.   
  103.   # Systems with 'cc' built from GCC (IBM RT, NeXT):
  104.   #CC=cc
  105. ***************
  106. *** 74,80 ****
  107.   
  108.   DEFS= -DGOD_PRIV -DCOMPRESS -DQUIET_WHISPER -DGENDER -UHOST_NAME \
  109.         -DCONNECT_MESSAGES -DPLAYER_LIST -DDETACH -DROBOT_MODE \
  110. !       -DRECYCLE -DTINKER -DNOFAKES -UISLANDIA -DDEBUG
  111.   
  112.   CFLAGS= $(OPTIM) $(DEFS)
  113.   
  114. --- 75,82 ----
  115.   
  116.   DEFS= -DGOD_PRIV -DCOMPRESS -DQUIET_WHISPER -DGENDER -UHOST_NAME \
  117.         -DCONNECT_MESSAGES -DPLAYER_LIST -DDETACH -DROBOT_MODE \
  118. !       -DRECYCLE -DTINKER -DNOFAKES -UISLANDIA -DDEBUG -DDB_DOUBLING \
  119. !       -DDB_INITIAL_SIZE=1000
  120.   
  121.   CFLAGS= $(OPTIM) $(DEFS)
  122.   
  123. ***************
  124. *** 119,125 ****
  125.       $(CC) $(CFLAGS) -o netmud.conc interface.o $(OFILES)
  126.   
  127.   fifonetmud: $P fifoiface.o $(OFILES)
  128. !     $(CC) $(CFLAGS) -o $@ fifoiface.o $(OFILES)
  129.   match.h: copyright.h db.h
  130.   netmud: $P oldinterface.o $(OFILES)
  131.       -mv -f netmud netmud~
  132. --- 121,127 ----
  133.       $(CC) $(CFLAGS) -o netmud.conc interface.o $(OFILES)
  134.   
  135.   fifonetmud: $P fifoiface.o $(OFILES)
  136. !     $(CC) $(CFLAGS) -o $@ fifoiface.o $(OFILES) $(LIBS)
  137.   match.h: copyright.h db.h
  138.   netmud: $P oldinterface.o $(OFILES)
  139.       -mv -f netmud netmud~
  140. ***************
  141. *** 131,153 ****
  142.   
  143.   dump: $P dump.o unparse.o $(DBOFILES)
  144.       -rm -f dump
  145. !     $(CC) $(CFLAGS) -o dump dump.o unparse.o $(DBOFILES) 
  146.   
  147.   sanity-check: $P sanity-check.o utils.o $(DBOFILES) 
  148.       -rm -f sanity-check
  149. !     $(CC) $(CFLAGS) -o sanity-check sanity-check.o utils.o $(DBOFILES)
  150.   
  151.   extract: $P extract.o utils.o $(DBOFILES) 
  152.       -rm -f extract
  153. !     $(CC) $(CFLAGS) -o extract extract.o utils.o $(DBOFILES)
  154.   
  155.   paths: $P paths.o unparse.o $(DBOFILES)
  156.       -rm -f paths
  157. !     $(CC) $(CFLAGS) -o paths paths.o unparse.o $(DBOFILES)
  158.   
  159.   decompress: $P decompress.o compress.o
  160.       -rm -f decompress
  161. !     $(CC) $(CFLAGS) -o decompress decompress.o compress.o
  162.   
  163.   clean:
  164.       -rm -f *.o a.out core gmon.out $(OUTFILES)
  165. --- 133,155 ----
  166.   
  167.   dump: $P dump.o unparse.o $(DBOFILES)
  168.       -rm -f dump
  169. !     $(CC) $(CFLAGS) -o dump dump.o unparse.o $(DBOFILES) $(LIBS)
  170.   
  171.   sanity-check: $P sanity-check.o utils.o $(DBOFILES) 
  172.       -rm -f sanity-check
  173. !     $(CC) $(CFLAGS) -o sanity-check sanity-check.o utils.o $(DBOFILES) $(LIBS)
  174.   
  175.   extract: $P extract.o utils.o $(DBOFILES) 
  176.       -rm -f extract
  177. !     $(CC) $(CFLAGS) -o extract extract.o utils.o $(DBOFILES) $(LIBS)
  178.   
  179.   paths: $P paths.o unparse.o $(DBOFILES)
  180.       -rm -f paths
  181. !     $(CC) $(CFLAGS) -o paths paths.o unparse.o $(DBOFILES) $(LIBS)
  182.   
  183.   decompress: $P decompress.o compress.o
  184.       -rm -f decompress
  185. !     $(CC) $(CFLAGS) -o decompress decompress.o compress.o $(LIBS)
  186.   
  187.   clean:
  188.       -rm -f *.o a.out core gmon.out $(OUTFILES)
  189.