diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2002-10-25 08:24:43 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2002-10-25 08:24:43 +0000 |
commit | 4e0a8fc3c2e4c946b481efaa5b5544c280e72207 (patch) | |
tree | b0f7acdde4b60104fe96befe23fe9ec2a8c615ae /net/freenet6/files | |
parent | Partially fix build on -current (remove #include <malloc.h>). This still (diff) |
Apply patch to let the Makefile in freenet6 honour the CC/CFLAGS
Patch is also submitted to the original authors.
PR: ports/44375
Submitted by: Volker Stolz <vs@foldr.org>
Reviewed by: kris@freebsd.org
Notes
Notes:
svn path=/head/; revision=68788
Diffstat (limited to 'net/freenet6/files')
-rw-r--r-- | net/freenet6/files/patch-src-Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/net/freenet6/files/patch-src-Makefile b/net/freenet6/files/patch-src-Makefile index 87461ceb47d1..cfe5bc04e43c 100644 --- a/net/freenet6/files/patch-src-Makefile +++ b/net/freenet6/files/patch-src-Makefile @@ -1,5 +1,14 @@ ---- src/Makefile.orig Sat Sep 8 01:52:26 2001 -+++ src/Makefile Thu Oct 11 13:01:53 2001 +--- src/Makefile.orig Thu Dec 6 06:06:55 2001 ++++ src/Makefile Tue Oct 22 22:50:38 2002 +@@ -11,7 +11,7 @@ + INC=. + BIN=../bin + +-CC=gcc -g -I$(INC) -Wall ++CC+=$(CFLAGS) -g -I$(INC) -Wall + + pre-clean: + @if [ -f $(BIN)/tspc.conf ]; then rm -f $(BIN)/tspc.conf; fi @@ -22,7 +22,7 @@ @echo Installing tspc mkdir -p $(install_bin) |