Adding native uconv to minimo. It always exists for the linux version of minimo, but I dropped it for WINCE until I could implement something that worked on WINCE. Native UCONV is not part of the default build. rs=bsmedberg

This commit is contained in:
dougt%meer.net 2005-08-09 07:41:30 +00:00
Родитель cc48226255
Коммит 93ccf73551
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -4036,6 +4036,7 @@ minimo)
MOZ_PROFILESHARING=
MOZ_SINGLE_PROFILE=1
MOZ_UPDATER=
MOZ_USE_NATIVE_UCONV=1
MOZ_V1_STRING_ABI=
MOZ_XPFE_COMPONENTS=
MOZ_XPINSTALL=
@ -4631,10 +4632,11 @@ MOZ_ARG_ENABLE_BOOL(native-uconv,
if test "$MOZ_USE_NATIVE_UCONV"; then
AC_DEFINE(MOZ_USE_NATIVE_UCONV)
fi
if test "$MOZ_USE_NATIVE_UCONV" -a "$ac_cv_func_iconv" != "yes"; then
if test "$OS_ARCH" != "WINCE" -a "$MOZ_USE_NATIVE_UCONV" -a "$ac_cv_func_iconv" != "yes"; then
AC_MSG_ERROR([iconv() not found. Cannot enable native uconv support.])
fi
dnl ========================================================
dnl Libeditor can be build as plaintext-only,
dnl or as a full html and text editing component.