freebsd-ports/archivers/bzip2/files/patch-aa
Steve Price 11f12d4c1b Don't forceably add -O2 to CFLAGS as this is known to cause problems
because of optimization bugs in the compiler on the Alpha.
2000-05-28 03:19:46 +00:00

14 lines
382 B
Text

--- Makefile.orig Tue May 16 16:31:04 2000
+++ Makefile Sat May 27 16:54:49 2000
@@ -1,8 +1,9 @@
SHELL=/bin/sh
-CC=gcc
+CC?=gcc
BIGFILES=-D_FILE_OFFSET_BITS=64
-CFLAGS=-Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
+CFLAGS?=-O2
+CFLAGS+=-Wall -Winline -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
OBJS= blocksort.o \
huffman.o \