Ticket #1072: fix_spidermonkey_build.patch

File fix_spidermonkey_build.patch, 524 bytes (added by pbernery, 12 years ago)
Line 
158c58,63
2< ../configure ${CONF_OPTS} --enable-debug --disable-optimize
3---
4> if [ "`uname -s`" = "Darwin" ]
5> then
6> CC="gcc" CXX="g++" ../configure ${CONF_OPTS} --enable-debug --disable-optimize
7> else
8> ../configure ${CONF_OPTS} --enable-debug --disable-optimize
9> fi
1065c70,75
11< ../configure ${CONF_OPTS} # --enable-gczeal --enable-debug-symbols
12---
13> if [ "`uname -s`" = "Darwin" ]
14> then
15> CC="gcc" CXX="g++" ../configure ${CONF_OPTS}
16> else
17> ../configure ${CONF_OPTS} # --enable-gczeal --enable-debug-symbols
18> fi