]> git.sesse.net Git - vlc/commitdiff
Set enable_non_utf8 to "no" on OS/2.
authorKO Myung-Hun <komh@chollian.net>
Mon, 10 Oct 2011 11:43:53 +0000 (20:43 +0900)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 10 Oct 2011 15:39:46 +0000 (18:39 +0300)
OS/2 does not use UTF-8 file systems at all.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
configure.ac

index 369cc08c8a657dbab3ab8db4c919592484daf8bf..ca7351c908b1b84fffb9d5e62df7b42a791d9be3 100644 (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"
   ])
 ])