--- ./antiword.h Tue Sep 25 12:36:47 2001 +++ ../antiword.0.32/./antiword.h Tue Mar 26 06:07:37 2002 @@ -10,7 +10,8 @@ #define __antiword_h 1 #if defined(DEBUG) == defined(NDEBUG) -#error Exactly one of the DEBUG and NDEBUG flags MUST be set +#error Exactly one of the DEBUG and NDEBUG flags MUST be set +#undef DEBUG #endif /* DEBUG == NDEBUG */ #include @@ -143,7 +144,7 @@ #define ANTIWORD_DIR "antiword" #define FONTNAMES_FILE "fontname.txt" #else -#define GLOBAL_ANTIWORD_DIR "/opt/antiword/share" +#define GLOBAL_ANTIWORD_DIR "/usr/freeware/share/antiword" #define ANTIWORD_DIR ".antiword" #define FONTNAMES_FILE "fontnames" #endif /* __dos */ --- ./Makefile.IRIX Sat Jul 21 12:58:03 2001 +++ ../antiword.0.32/./Makefile.IRIX Tue Mar 26 06:01:06 2002 @@ -4,7 +4,7 @@ # Original version by: Martin Watt # -CC = cc +#CC = cc LD = cc # must be equal to DEBUG or NDEBUG @@ -12,8 +12,8 @@ LDLIBS = -CFLAGS = -O2 -s -D$(DB) -LDFLAGS = +#CFLAGS = -O2 -s -D$(DB) +#LDFLAGS = OBJS =\ main_u.o asc85enc.o blocklist.o chartrans.o datalist.o depot.o\ @@ -26,7 +26,7 @@ all: antiword antiword: $(OBJS) - $(LD) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@ + $(LD) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBS) .c.o: $(CC) $(CFLAGS) -c $< @@ -40,3 +40,6 @@ Unix-only/fontinfo.h: Unix-only/fontinfo.pl Unix-only/fontinfo.pl > Unix-only/fontinfo.h + +clean: + rm -f antiword *.o