diff -cr sed-1.02/Makefile sed-1.02.a/Makefile *** sed-1.02/Makefile Fri Mar 24 02:09:42 1989 --- sed-1.02.a/Makefile Wed Apr 19 22:21:43 1989 *************** *** 21,31 **** SRC = README sed.c regex.c glob.c regex.h Makefile # on SysV systems, comment out the next line and comment out the one below it #CFLAGS = -g -DUSG -I. ! CFLAGS = -g -I. # if your machine doesn't have vfprintf() add -DNO_VFPRINTF to the above lines sed: $(OBJS) ! $(CC) $(LINK) -o sed $(OBJS) clean: rm -f sed $(OBJS) core butgs sed.tar.Z --- 21,32 ---- SRC = README sed.c regex.c glob.c regex.h Makefile # on SysV systems, comment out the next line and comment out the one below it #CFLAGS = -g -DUSG -I. ! CC = gcc ! CFLAGS = -O -I. -DUSG -DALTOS # if your machine doesn't have vfprintf() add -DNO_VFPRINTF to the above lines sed: $(OBJS) ! $(CC) $(LINK) -o sed $(OBJS) -lizard -lndir clean: rm -f sed $(OBJS) core butgs sed.tar.Z diff -cr sed-1.02/glob.c sed-1.02.a/glob.c *** sed-1.02/glob.c Thu Jan 26 21:36:21 1989 --- sed-1.02.a/glob.c Wed Apr 19 22:21:06 1989 *************** *** 115,122 **** --- 115,127 ---- #endif #ifdef USG + #ifdef ALTOS + #include + #define dirent direct + #else #include #include + #endif #include #define direct dirent