diff options
author | kris <kris@FreeBSD.org> | 2003-10-19 08:59:55 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-10-19 08:59:55 +0000 |
commit | 2b4d3637bf519720dede1024e33a037ebaa6ab03 (patch) | |
tree | ba7356273e6203ae040fb22311736d5ac60d3126 | |
parent | 8b3f89e06dd5c0e73dee77fc583a8ce69e302108 (diff) | |
download | FreeBSD-ports-2b4d3637bf519720dede1024e33a037ebaa6ab03.zip FreeBSD-ports-2b4d3637bf519720dede1024e33a037ebaa6ab03.tar.gz |
Respect CC and CFLAGS
-rw-r--r-- | devel/libds/files/patch-Makefile | 22 | ||||
-rw-r--r-- | devel/mk/files/patch-lib::9::Makefile | 11 | ||||
-rw-r--r-- | devel/mk/files/patch-lib::bio::Makefile | 11 | ||||
-rw-r--r-- | devel/mk/files/patch-lib::regexp::Makefile | 11 | ||||
-rw-r--r-- | devel/mk/files/patch-src::Makefile | 11 |
5 files changed, 66 insertions, 0 deletions
diff --git a/devel/libds/files/patch-Makefile b/devel/libds/files/patch-Makefile new file mode 100644 index 0000000..90e1ca2 --- /dev/null +++ b/devel/libds/files/patch-Makefile @@ -0,0 +1,22 @@ +--- Makefile.orig Sun Oct 19 01:56:50 2003 ++++ Makefile Sun Oct 19 01:56:43 2003 +@@ -5,8 +5,8 @@ + # Makefile for LibDS 2.0 + # + +-CC = cc +-CCOPTFLAGS = -O2 ++CC ?= cc ++CCOPTFLAGS = $(CFLAGS) + + CCEXTRAFLAGS = -DStandAlone + +@@ -42,7 +42,7 @@ + $(TARGET) + + gcc: +- @-$(MAKE) CC="gcc -pipe" CCWARNFLAGS="-Wall -W -Wshadow \ ++ @-$(MAKE) CC=$(CC) CCWARNFLAGS="-Wall -W -Wshadow \ + -Wnested-externs -Wwrite-strings -Wpointer-arith \ + -Wmissing-declarations -Wredundant-decls -Winline \ + -Wstrict-prototypes" SHARED="-shared" release diff --git a/devel/mk/files/patch-lib::9::Makefile b/devel/mk/files/patch-lib::9::Makefile new file mode 100644 index 0000000..afbee61 --- /dev/null +++ b/devel/mk/files/patch-lib::9::Makefile @@ -0,0 +1,11 @@ +--- lib/9/Makefile.orig Sun Oct 19 01:51:44 2003 ++++ lib/9/Makefile Sun Oct 19 01:51:50 2003 +@@ -16,7 +16,7 @@ + newprint.o + + TARG=../lib9.a +-CFLAGS=-g -I../../include ++CFLAGS+=-g -I../../include + + all: $(TARG) + diff --git a/devel/mk/files/patch-lib::bio::Makefile b/devel/mk/files/patch-lib::bio::Makefile new file mode 100644 index 0000000..4d8fc3a --- /dev/null +++ b/devel/mk/files/patch-lib::bio::Makefile @@ -0,0 +1,11 @@ +--- lib/bio/Makefile.orig Sun Oct 19 01:51:44 2003 ++++ lib/bio/Makefile Sun Oct 19 01:51:55 2003 +@@ -12,7 +12,7 @@ + OFILES=bflush.o bgetc.o bgetrune.o binit.o bprint.o bputc.o bwrite.o + + TARG=../libbio.a +-CFLAGS=-g -I../../include ++CFLAGS+=-g -I../../include + + all: $(TARG) + diff --git a/devel/mk/files/patch-lib::regexp::Makefile b/devel/mk/files/patch-lib::regexp::Makefile new file mode 100644 index 0000000..61593dd --- /dev/null +++ b/devel/mk/files/patch-lib::regexp::Makefile @@ -0,0 +1,11 @@ +--- lib/regexp/Makefile.orig Sun Oct 19 01:51:44 2003 ++++ lib/regexp/Makefile Sun Oct 19 01:51:59 2003 +@@ -8,7 +8,7 @@ + OFILES=regaux.o regcomp.o regexec.o regsub.o + + TARG=../libregexp.a +-CFLAGS=-g -I../../include ++CFLAGS+=-g -I../../include + + all: $(TARG) + diff --git a/devel/mk/files/patch-src::Makefile b/devel/mk/files/patch-src::Makefile new file mode 100644 index 0000000..a2c2353 --- /dev/null +++ b/devel/mk/files/patch-src::Makefile @@ -0,0 +1,11 @@ +--- src/Makefile.orig Sun Oct 19 01:50:46 2003 ++++ src/Makefile Sun Oct 19 01:50:14 2003 +@@ -5,7 +5,7 @@ + + + TARG=../mk +-CFLAGS=-g -I../include ++CFLAGS+=-g -I../include + + $(TARG): $(OFILES) ../lib/libregexp.a ../lib/libbio.a ../lib/lib9.a + $(CC) -o $(TARG) $(OFILES) -L../lib -lregexp -lbio -l9 |