summaryrefslogtreecommitdiffstats
path: root/m4.include/mc-i18n.m4
blob: 8f1474139f7b5b5932ea43bc66469766712ec41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
dnl @synopsis mc_I18N
dnl
dnl Check if environment is ready for get translations of docs from transifex
dnl
dnl @author Slava Zanko <slavazanko@gmail.com>
dnl @version 2011-02-10
dnl @license GPL
dnl @copyright Free Software Foundation, Inc.

AC_DEFUN([mc_I18N],[
    dnl User visible support for charset conversion.
    AC_ARG_ENABLE([charset],
        AS_HELP_STRING([--enable-charset], [Support for charset selection and conversion @<:@yes@:>@]))
    have_charset=
    charset_msg="no"
    if test "x$enable_charset" != "xno"; then
        AC_DEFINE(HAVE_CHARSET, 1, [Define to enable charset selection and conversion])
        have_charset=yes
        charset_msg="yes"

        dnl Solaris has different name of Windows 1251 encoding
        case $host_os in
            solaris*)
                CP1251="ANSI-1251"
                ;;
            *)
                CP1251="CP1251"
                ;;
        esac

        AC_SUBST(CP1251)
    fi
])