mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.4.385
Problem: When building with tiny or small features building the .mo files fails. Solution: In autoconf do not setup for building the .mo files when it would fail.
This commit is contained in:
2
src/auto/configure
vendored
2
src/auto/configure
vendored
@@ -12966,7 +12966,7 @@ rm -f core conftest.err conftest.$ac_objext \
|
|||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: msgfmt not found - disabled" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: msgfmt not found - disabled" >&5
|
||||||
$as_echo "msgfmt not found - disabled" >&6; };
|
$as_echo "msgfmt not found - disabled" >&6; };
|
||||||
fi
|
fi
|
||||||
if test $have_gettext = "yes"; then
|
if test $have_gettext = "yes" -a "x$features" != "xtiny" -a "x$features" != "xsmall"; then
|
||||||
$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h
|
$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h
|
||||||
|
|
||||||
MAKEMO=yes
|
MAKEMO=yes
|
||||||
|
@@ -3818,7 +3818,7 @@ if test "$enable_nls" = "yes"; then
|
|||||||
else
|
else
|
||||||
AC_MSG_RESULT([msgfmt not found - disabled]);
|
AC_MSG_RESULT([msgfmt not found - disabled]);
|
||||||
fi
|
fi
|
||||||
if test $have_gettext = "yes"; then
|
if test $have_gettext = "yes" -a "x$features" != "xtiny" -a "x$features" != "xsmall"; then
|
||||||
AC_DEFINE(HAVE_GETTEXT)
|
AC_DEFINE(HAVE_GETTEXT)
|
||||||
MAKEMO=yes
|
MAKEMO=yes
|
||||||
AC_SUBST(MAKEMO)
|
AC_SUBST(MAKEMO)
|
||||||
|
@@ -734,6 +734,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
385,
|
||||||
/**/
|
/**/
|
||||||
384,
|
384,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user