From 0870b48b40cccd62af9a298840eb151097c15b8d Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Tue, 8 Nov 2011 12:10:22 -0800 Subject: [PATCH] Bug 700519 - Remove -fpascal-strings from Darwin compiler flags; r=ted --- js/src/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/src/configure.in b/js/src/configure.in index e24c13657ce..0891fec5cc5 100644 --- a/js/src/configure.in +++ b/js/src/configure.in @@ -2109,8 +2109,8 @@ case "$target" in MKCSHLIB='$(CC) $(CFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -o $@' MOZ_OPTIMIZE_FLAGS="-O3 -fno-stack-protector" _PEDANTIC= - CFLAGS="$CFLAGS -fpascal-strings -fno-common" - CXXFLAGS="$CXXFLAGS -fpascal-strings -fno-common" + CFLAGS="$CFLAGS -fno-common" + CXXFLAGS="$CXXFLAGS -fno-common" DLL_SUFFIX=".dylib" DSO_LDOPTS='' STRIP="$STRIP -x -S"