diff options
author | trevor <trevor@FreeBSD.org> | 2002-03-26 10:02:10 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2002-03-26 10:02:10 +0800 |
commit | fc4aa9f560c6128bb5278d2bac3c4da9381ae224 (patch) | |
tree | 75a680e5a87f6aa53e7a300ebde09d55484a096f | |
parent | e74856e5e33c22dce496de8b008a1525db6cb682 (diff) | |
download | freebsd-ports-graphics-fc4aa9f560c6128bb5278d2bac3c4da9381ae224.tar.gz freebsd-ports-graphics-fc4aa9f560c6128bb5278d2bac3c4da9381ae224.tar.zst freebsd-ports-graphics-fc4aa9f560c6128bb5278d2bac3c4da9381ae224.zip |
Ignore CFLAGS. As noted by the authors, optimization "takes too
much RAM."
-rw-r--r-- | math/cxsc/Makefile | 2 | ||||
-rw-r--r-- | math/cxsc/files/patch-Makefile | 15 |
2 files changed, 4 insertions, 13 deletions
diff --git a/math/cxsc/Makefile b/math/cxsc/Makefile index 4a5320b5316..144c4328d76 100644 --- a/math/cxsc/Makefile +++ b/math/cxsc/Makefile @@ -14,8 +14,6 @@ DISTNAME= ${PORTNAME}-2-0-beta MAINTAINER= ports@FreeBSD.org -BROKEN= "Does not build (exhausts memory)" - WRKSRC= ${WRKDIR}/${PORTNAME} USE_GMAKE= yes MAKE_ENV= INSTALL_DATA="${INSTALL_DATA}" diff --git a/math/cxsc/files/patch-Makefile b/math/cxsc/files/patch-Makefile index f6f61b5faf3..2eee7a257a9 100644 --- a/math/cxsc/files/patch-Makefile +++ b/math/cxsc/files/patch-Makefile @@ -1,6 +1,6 @@ ---- Makefile.orig Fri Aug 10 01:50:35 2001 -+++ Makefile Sat Aug 11 23:35:31 2001 -@@ -2,24 +2,23 @@ +--- Makefile.orig Thu Aug 9 10:50:35 2001 ++++ Makefile Mon Mar 25 17:26:19 2002 +@@ -2,19 +2,18 @@ # (un-)installation prefix # e.g. /usr/local/cxsc or local home directory @@ -14,8 +14,7 @@ +#export CCOPTS=-Wall# optional flags to give to the C compiler export CCINC=-I. -I../.. -I../rts# # additional include path --export CCFLAGS=$(CCINC) $(CCOPTS)# -+export CCFLAGS=${CFLAGS} $(CCINC) $(CCOPTS)# + export CCFLAGS=$(CCINC) $(CCOPTS)# # extra flags to give to the C compiler -export CXX=g++# name of the C++ compiler @@ -25,12 +24,6 @@ # -O3# at the moment without optimization # (takes too much RAM) export CXXINC=-I. -I.. -Irts/ -Ifi_lib# - # additional include path --export CXXFLAGS=$(CXXINC) $(CXXOPTS)# -+export CXXFLAGS+=$(CXXINC) $(CXXOPTS)# - # extra flags to give to the C++ compiler - - export AR=ar# put object file into archive @@ -29,7 +28,7 @@ export RM=rm -f# remove files (forced) export RMDIR=rm -rf# remove directory |