1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Ignore CFLAGS. As noted by the authors, optimization "takes too

much RAM."
This commit is contained in:
Trevor Johnson 2002-03-26 02:02:10 +00:00
parent 746e4b7b5d
commit aa277916ac
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=56666
2 changed files with 4 additions and 13 deletions

View File

@ -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}"

View File

@ -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