diff options
Diffstat (limited to 'news/plor/files/patch-aa')
-rw-r--r-- | news/plor/files/patch-aa | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/news/plor/files/patch-aa b/news/plor/files/patch-aa new file mode 100644 index 0000000..461886f --- /dev/null +++ b/news/plor/files/patch-aa @@ -0,0 +1,45 @@ +--- Makefile.orig Thu Oct 31 06:36:14 1996 ++++ Makefile Fri Jan 17 22:56:42 1997 +@@ -14,12 +14,12 @@ + INCLUDE = ./include/ + #LIBS = + +-ifdef DEBUG ++.ifdef DEBUG + #CFLAGS = -g -Wall -m486 -O2 -ansi -pedantic -finline-functions +-FLAGS = -g -Wall -m486 -O3 -ansi -pedantic -fomit-frame-pointer +-else +-FLAGS = -m486 -O3 -fomit-frame-pointer +-endif ++FLAGS = -g -Wall -m486 -O3 -ansi -pedantic -fomit-frame-pointer -D_HAVE_PARAM_H ++.else ++FLAGS = -m486 -O3 -fomit-frame-pointer -D_HAVE_PARAM_H ++.endif + + CFLAGS = -I$(INCLUDE) $(FLAGS) + +@@ -28,18 +28,18 @@ + + ############# END USER CONFIGURATION ################## + +-ifdef DEBUG ++.ifdef DEBUG + all: TODO $(OBJECTS) del plor +-else ++.else + all: $(OBJECTS) del plor +-endif ++.endif + + plor: $(OBJECTS) + $(CC) $(FLAGS) $(OBJECTS) $(LIBS) -o plor +-ifdef DEBUG +-else ++.ifdef DEBUG ++.else + strip plor +-endif ++.endif + + # OBJECTS to compile + main.o: main.c |