diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2001-11-03 10:20:48 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2001-11-03 10:20:48 +0000 |
commit | 97baaa16c549f0f5053608f3758c9b060cd4cadf (patch) | |
tree | 716e050f020f219fa9fd3ca39124f9a175d3bea2 /archivers | |
parent | 7b6be61fdf5124e03d1fdeccdcfd03fd92d187cc (diff) | |
download | ports-97baaa16c549f0f5053608f3758c9b060cd4cadf.tar.gz ports-97baaa16c549f0f5053608f3758c9b060cd4cadf.zip |
Respect CFLAGS.
PR: 30401
Submitted by: Glenn Johnson <gjohnson@srrc.ars.usda.gov>
Approved by: maintainer timeout
Notes
Notes:
svn path=/head/; revision=49521
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/freeze/files/patch-Makefile.in | 13 | ||||
-rw-r--r-- | archivers/freeze/files/patch-configure | 12 |
2 files changed, 25 insertions, 0 deletions
diff --git a/archivers/freeze/files/patch-Makefile.in b/archivers/freeze/files/patch-Makefile.in new file mode 100644 index 000000000000..916d7bcbd53f --- /dev/null +++ b/archivers/freeze/files/patch-Makefile.in @@ -0,0 +1,13 @@ +$FreeBSD$ + +--- Makefile.in.orig Thu Sep 6 11:10:34 2001 ++++ Makefile.in Thu Sep 6 11:10:46 2001 +@@ -3,7 +3,7 @@ + VPATH = $(srcdir) + + CC = @CC@ +-CFLAGS = -I. # -O2 # for gcc 2.2.2 ++CFLAGS += -I. # -O2 # for gcc 2.2.2 + + INSTALL = @INSTALL@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ diff --git a/archivers/freeze/files/patch-configure b/archivers/freeze/files/patch-configure new file mode 100644 index 000000000000..9d15741d17e4 --- /dev/null +++ b/archivers/freeze/files/patch-configure @@ -0,0 +1,12 @@ +$FreeBSD$ + +--- configure.orig Thu Sep 6 11:08:26 2001 ++++ configure Thu Sep 6 11:08:42 2001 +@@ -126,7 +126,7 @@ + ${CC-cc} -E conftest.c > conftest.out 2>&1 + if egrep yes conftest.out >/dev/null 2>&1; then + GCC=1 # For later tests. +- CC="$CC -O" ++ CC="$CC" + fi + rm -f conftest* |