summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2006-10-09 12:30:01 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2006-10-09 12:30:01 +0800
commitf2bb8632a6e71c569de332aed63fe0992888057e (patch)
treed7daf1e4345dc971e1c11c75ae2298fbfc772041
parent5c1e6de0379dcdef537e3d9d299d3a00bac41874 (diff)
downloadmarcuscom-ports-f2bb8632a6e71c569de332aed63fe0992888057e.tar
marcuscom-ports-f2bb8632a6e71c569de332aed63fe0992888057e.tar.gz
marcuscom-ports-f2bb8632a6e71c569de332aed63fe0992888057e.tar.bz2
marcuscom-ports-f2bb8632a6e71c569de332aed63fe0992888057e.tar.lz
marcuscom-ports-f2bb8632a6e71c569de332aed63fe0992888057e.tar.xz
marcuscom-ports-f2bb8632a6e71c569de332aed63fe0992888057e.tar.zst
marcuscom-ports-f2bb8632a6e71c569de332aed63fe0992888057e.zip
- Don't define any optimizations if WITH_OPTIMIZED_CFLAGS isn't defined.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7682 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--www/mozilla/Makefile.common6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/mozilla/Makefile.common b/www/mozilla/Makefile.common
index 508b1ac33..5496907a3 100644
--- a/www/mozilla/Makefile.common
+++ b/www/mozilla/Makefile.common
@@ -4,7 +4,7 @@
# Whom: Michael Johnson <ahze@FreeBSD.org>
#
# $FreeBSD$
-# $MCom: ports/www/mozilla/Makefile.common,v 1.25 2006/09/30 06:27:37 ahze Exp $
+# $MCom: ports/www/mozilla/Makefile.common,v 1.26 2006/10/05 21:37:18 mezz Exp $
# This file contains some reusable components for mozilla ports. It's of
# use primarily to apps from the mozilla project itself (such as Firefox,
@@ -184,8 +184,8 @@ MOZ_MK_OPTIONS+= XP_UNIX=1 \
CFLAGS:= ${CFLAGS} -O2 -fno-strict-aliasing ${EXTRA_CFLAGS}
WITH_OPTIMIZE?= -O2
.else
-CFLAGS:= ${CFLAGS} -O ${EXTRA_CFLAGS}
-WITH_OPTIMIZE?= -O
+CFLAGS:= ${CFLAGS} ${EXTRA_CFLAGS}
+WITH_OPTIMIZE?=
.endif
.if defined(WITH_SMB)