comparison src/configure.ac @ 15136:1f3fe26f8e3f v8.1.0578

patch 8.1.0578: cannot disable arabic, rightleft and farsi in configure commit https://github.com/vim/vim/commit/5c5697f29829fc3b21fc5452fe8f239f6a4cb8e1 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 12 20:34:09 2018 +0100 patch 8.1.0578: cannot disable arabic, rightleft and farsi in configure Problem: Cannot disable arabic, rightleft and farsi in configure. Solution: Add configur flags. (Diego Fernando Carri?n, closes https://github.com/vim/vim/issues/1867)
author Bram Moolenaar <Bram@vim.org>
date Wed, 12 Dec 2018 20:45:06 +0100
parents 2c72fa16aa70
children 54d2905bd5ab
comparison
equal deleted inserted replaced
15135:229f8e0696c7 15136:1f3fe26f8e3f
2136 AC_MSG_RESULT($enable_multibyte) 2136 AC_MSG_RESULT($enable_multibyte)
2137 if test "$enable_multibyte" = "yes"; then 2137 if test "$enable_multibyte" = "yes"; then
2138 AC_DEFINE(FEAT_MBYTE) 2138 AC_DEFINE(FEAT_MBYTE)
2139 fi 2139 fi
2140 2140
2141 dnl Right-to-Left language support for Vim will be included with big features,
2142 dnl unless ENABLE_RIGHTLEFT is undefined.
2143 AC_MSG_CHECKING(--disable-rightleft argument)
2144 AC_ARG_ENABLE(rightleft,
2145 [ --disable-rightleft Do not include Right-to-Left language support.],
2146 , [enable_rightleft="yes"])
2147 if test "$enable_rightleft" = "yes"; then
2148 AC_MSG_RESULT(no)
2149 else
2150 AC_MSG_RESULT(yes)
2151 AC_DEFINE(DISABLE_RIGHTLEFT)
2152 fi
2153
2154 dnl Arabic language support for Vim will be included with big features,
2155 dnl unless ENABLE_ARABIC is undefined.
2156 AC_MSG_CHECKING(--disable-arabic argument)
2157 AC_ARG_ENABLE(arabic,
2158 [ --disable-arabic Do not include Arabic language support.],
2159 , [enable_arabic="yes"])
2160 if test "$enable_arabic" = "yes"; then
2161 AC_MSG_RESULT(no)
2162 else
2163 AC_MSG_RESULT(yes)
2164 AC_DEFINE(DISABLE_ARABIC)
2165 fi
2166
2167 dnl Farsi language support for vim will be included with big features,
2168 dnl unless ENABLE_FARSI is undefined.
2169 AC_MSG_CHECKING(--disable-farsi argument)
2170 AC_ARG_ENABLE(farsi,
2171 [ --disable-farsi Do not include Farsi language support.],
2172 , [enable_farsi="yes"])
2173 if test "$enable_farsi" = "yes"; then
2174 AC_MSG_RESULT(no)
2175 else
2176 AC_MSG_RESULT(yes)
2177 AC_DEFINE(DISABLE_FARSI)
2178 fi
2179
2141 AC_MSG_CHECKING(--enable-hangulinput argument) 2180 AC_MSG_CHECKING(--enable-hangulinput argument)
2142 AC_ARG_ENABLE(hangulinput, 2181 AC_ARG_ENABLE(hangulinput,
2143 [ --enable-hangulinput Include Hangul input support.], , 2182 [ --enable-hangulinput Include Hangul input support.], ,
2144 [enable_hangulinput="no"]) 2183 [enable_hangulinput="no"])
2145 AC_MSG_RESULT($enable_hangulinput) 2184 AC_MSG_RESULT($enable_hangulinput)