diff -cr phone/common.h phone.otax/common.h *** phone/common.h Mon Jan 16 21:49:43 1989 --- phone.otax/common.h Fri May 19 22:48:09 1989 *************** *** 3,8 **** --- 3,16 ---- */ + #define FD_ZERO(set) (((set)->fds_bits[0]) = 0) + #define FD_CLR(s1, set) (((set)->fds_bits[0]) &= (1 << (s1))) + #define FD_SET(s1, set) (((set)->fds_bits[0]) |= 1 << (s1)) + #define FD_ISSET(s1, set) (((set)->fds_bits[0]) & (1 << (s1))) + #define FD_SETSIZE 30 + #define S_IWGRP 00020 + + #ifndef ESC #define ESC '\033' /* precedes all commands */ #endif diff -cr phone/client/Makefile phone.otax/client/Makefile *** phone/client/Makefile Tue Jan 17 00:13:44 1989 --- phone.otax/client/Makefile Fri May 19 21:33:01 1989 *************** *** 18,25 **** CC = cc ! #CFLAGS = -O -DSERVICES -DLOCAL_ECHO ! CFLAGS = -g -DSERVICES -DLOCAL_ECHO LIBS = -lcurses -ltermlib #-lresolv LPR = lpr --- 18,25 ---- CC = cc ! CFLAGS = -O -DSERVICES -DLOCAL_ECHO ! #CFLAGS = -g -DSERVICES -DLOCAL_ECHO LIBS = -lcurses -ltermlib #-lresolv LPR = lpr diff -cr phone/client/sendit.c phone.otax/client/sendit.c *** phone/client/sendit.c Tue Jan 17 00:13:44 1989 --- phone.otax/client/sendit.c Fri May 19 22:06:24 1989 *************** *** 1,3 **** --- 1,4 ---- + #include "../common.h" #include "defs.h" #include #include diff -cr phone/conv/Makefile phone.otax/conv/Makefile *** phone/conv/Makefile Tue Jan 17 00:13:45 1989 --- phone.otax/conv/Makefile Fri May 19 21:33:39 1989 *************** *** 8,14 **** CFLAGS = -O SRCS = convd.c DEST = convd ! RDEST = /usr/etc/convd all: ${DEST} --- 8,14 ---- CFLAGS = -O SRCS = convd.c DEST = convd ! RDEST = /usr/local/lib/convd all: ${DEST} diff -cr phone/master/Makefile phone.otax/master/Makefile *** phone/master/Makefile Tue Jan 17 00:13:47 1989 --- phone.otax/master/Makefile Fri May 19 22:16:01 1989 *************** *** 20,31 **** # NO_WHO - Define this if you want your site to be "secure" and not allow # outside users to use the "who" command to see who's on ... ! #OFLAG= -O ! OFLAG= -g INETD= -DINETD #INETD= #CFLAGS = -O -DPATH=\"/usr/local/lib/convd\" ! CFLAGS = $(OFLAG) $(INETD) -DFORK -DSERVICES -DDPATH=\"/usr/etc/convd\" LPR = lpr CC = cc --- 20,31 ---- # NO_WHO - Define this if you want your site to be "secure" and not allow # outside users to use the "who" command to see who's on ... ! OFLAG= -O ! #OFLAG= -g INETD= -DINETD #INETD= #CFLAGS = -O -DPATH=\"/usr/local/lib/convd\" ! CFLAGS = $(OFLAG) $(INETD) -DFORK -DSERVICES -DDPATH=\"/usr/local/lib/convd\" LPR = lpr CC = cc