summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2001-06-14 21:45:39 +0000
committerwtc%netscape.com <devnull@localhost>2001-06-14 21:45:39 +0000
commit635c42be17140b84794996ab6d89b9910c83dba1 (patch)
treefb458450cdba4865a00f03d0b4f4d595fac866ae
parent9d95081b52ea4ed0a857018a10cd7be1bacbb02b (diff)
downloadnspr-hg-635c42be17140b84794996ab6d89b9910c83dba1.tar.gz
Bugzilla bug #85979: always use the -xs compiler option in Solaris debug
builds. Modified files: configure.in configure
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index a3dbbe94..9c34e105 100755
--- a/configure
+++ b/configure
@@ -4313,7 +4313,7 @@ EOF
else
CC="$CC -xstrconst"
CXX="$CXX -Qoption cg -xstrconst"
- if test -n "$BUILD_NUMBER" && test -z "$MOZ_OPTIMIZE"; then
+ if test -z "$MOZ_OPTIMIZE"; then
CFLAGS="$CFLAGS -xs"
CXXFLAGS="$CXXFLAGS -xs"
fi
diff --git a/configure.in b/configure.in
index 93dcc6ef..057bad08 100644
--- a/configure.in
+++ b/configure.in
@@ -1548,7 +1548,7 @@ mips-sony-newsos*)
else
CC="$CC -xstrconst"
CXX="$CXX -Qoption cg -xstrconst"
- if test -n "$BUILD_NUMBER" && test -z "$MOZ_OPTIMIZE"; then
+ if test -z "$MOZ_OPTIMIZE"; then
CFLAGS="$CFLAGS -xs"
CXXFLAGS="$CXXFLAGS -xs"
fi