Bug 1045958 - Enable ICU on B2G Desktop OS X build r=josh.

This commit is contained in:
Tooru Fujisawa 2014-10-08 22:43:47 +08:00
parent a590316a64
commit 79176b9175

View File

@ -9059,9 +9059,15 @@ dnl ========================================================
# Android: bug 864843
# B2G: bug 866301
if test "$MOZ_WIDGET_TOOLKIT" = "android" ||
test "$MOZ_BUILD_APP" = "b2g"; then
if test "$MOZ_WIDGET_TOOLKIT" = "android"; then
_INTL_API=no
elif test "$MOZ_BUILD_APP" = "b2g"; then
if test "$MOZ_WIDGET_TOOLKIT" = "cocoa"; then
# nsCollationMacUC needs ICU
_INTL_API=yes
else
_INTL_API=no
fi
else
_INTL_API=yes
fi