Bug 853301 - Enable ECMAScript Internationalization API for desktop Firefox. r=gps, r=brendan, sr=asa

This commit is contained in:
Norbert Lindenberg 2013-05-06 16:45:25 -07:00
parent 90e507fa69
commit d570b10f97
3 changed files with 17 additions and 8 deletions

View File

@ -25,3 +25,6 @@ if [ -z "$CXX" ]; then
fi
ac_add_options --with-ccache
# Enable ECMAScript Internationalization API
ac_add_options --enable-intl-api

View File

@ -1,8 +1,11 @@
# Pymake needs Windows-style paths. Use cmd.exe to hack around this.
mk_export_correct_style() {
if test -n "${_PYMAKE}"; then
mk_add_options "export $1=$(cmd.exe //c echo %$1%)"
else
mk_add_options "export $1=$(eval echo \$$1)"
fi
}
# Pymake needs Windows-style paths. Use cmd.exe to hack around this.
mk_export_correct_style() {
if test -n "${_PYMAKE}"; then
mk_add_options "export $1=$(cmd.exe //c echo %$1%)"
else
mk_add_options "export $1=$(eval echo \$$1)"
fi
}
# Enable ECMAScript Internationalization API
ac_add_options --enable-intl-api

View File

@ -2,3 +2,6 @@
CC=/tools/gcc-4.5-0moz3/bin/gcc
CXX=/tools/gcc-4.5-0moz3/bin/g++
# Enable ECMAScript Internationalization API
ac_add_options --enable-intl-api