aboutsummaryrefslogtreecommitdiffstats
path: root/archivers/bzip2
diff options
context:
space:
mode:
authorsteve <steve@FreeBSD.org>2000-05-28 11:19:46 +0800
committersteve <steve@FreeBSD.org>2000-05-28 11:19:46 +0800
commitae47d2c45c59038970c9d2701804abe6a503b8c2 (patch)
treeb54f300c368063dbb8644c3c1507bd14abd83f38 /archivers/bzip2
parentb1963d977a59f95b7317deb783ef6c87b27918d6 (diff)
downloadfreebsd-ports-gnome-ae47d2c45c59038970c9d2701804abe6a503b8c2.tar.gz
freebsd-ports-gnome-ae47d2c45c59038970c9d2701804abe6a503b8c2.tar.zst
freebsd-ports-gnome-ae47d2c45c59038970c9d2701804abe6a503b8c2.zip
Don't forceably add -O2 to CFLAGS as this is known to cause problems
because of optimization bugs in the compiler on the Alpha.
Diffstat (limited to 'archivers/bzip2')
-rw-r--r--archivers/bzip2/files/patch-aa11
1 files changed, 7 insertions, 4 deletions
diff --git a/archivers/bzip2/files/patch-aa b/archivers/bzip2/files/patch-aa
index cf9c2e05dd7e..a695b9ec9fcd 100644
--- a/archivers/bzip2/files/patch-aa
+++ b/archivers/bzip2/files/patch-aa
@@ -1,11 +1,14 @@
---- Makefile.orig Tue May 16 14:31:04 2000
-+++ Makefile Thu May 18 17:31:44 2000
-@@ -2,5 +2,6 @@
+--- 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 -O2 -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
++CFLAGS+=-Wall -Winline -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
+ OBJS= blocksort.o \
+ huffman.o \