Set enable_non_utf8 to "no" on OS/2.

OS/2 does not use UTF-8 file systems at all.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
This commit is contained in:
KO Myung-Hun 2011-10-10 20:43:53 +09:00 committed by Rémi Denis-Courmont
parent 55aa5282b7
commit b1b7dd8dab
1 changed files with 1 additions and 1 deletions

View File

@ -841,7 +841,7 @@ dnl Manual switch for UTF-8
AC_ARG_ENABLE(non-utf8,
[AS_HELP_STRING([--enable-non-utf8],
[support legacy non-UTF-8 systems (default disabled)])],, [
AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce" -o "${SYS}" = "os2"], [
enable_non_utf8="no"
])
])