diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-24 10:11:54 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-24 10:11:54 +0000 |
commit | 94347ffdf215aa33280fa1c7ebfcc0e29ff2631d (patch) | |
tree | 0df4affc839cc8507cabc7fab9ea7780a859d6a9 /emulators/bsvc/files/patch-src-Makefile | |
parent | Fix fetch problem (a side effect of ade's resignation) (diff) |
Make emulators/bsvc work on -current again
PR: ports/44852
Submitted by: Volker Stolz <vs@foldr.org>
Diffstat (limited to 'emulators/bsvc/files/patch-src-Makefile')
-rw-r--r-- | emulators/bsvc/files/patch-src-Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/emulators/bsvc/files/patch-src-Makefile b/emulators/bsvc/files/patch-src-Makefile new file mode 100644 index 000000000000..6806cd074234 --- /dev/null +++ b/emulators/bsvc/files/patch-src-Makefile @@ -0,0 +1,19 @@ +--- Makefile.orig Sun Nov 3 13:08:10 2002 ++++ Makefile Sun Nov 3 13:08:55 2002 +@@ -6,12 +6,12 @@ + ############################################################################### + + ## C and C++ compiler to use +-CC = gcc +-CXX = g++ ++CC ?= gcc ++CXX ?= g++ + + ## C and C++ compiler flags +-CCFLAGS = -O +-CXXFLAGS = -O -ansi -Wall -D_G_NO_EXTERN_TEMPLATES ++CCFLAGS = $(CFLAGS) ++CXXFLAGS += -ansi -D_G_NO_EXTERN_TEMPLATES -DUSE_STD + + ## System Includes + SYS_INCLUDES = |