|
|
073263 |
To: vim_dev@googlegroups.com
|
|
|
073263 |
Subject: Patch 7.4.385
|
|
|
073263 |
Fcc: outbox
|
|
|
073263 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
073263 |
Mime-Version: 1.0
|
|
|
073263 |
Content-Type: text/plain; charset=UTF-8
|
|
|
073263 |
Content-Transfer-Encoding: 8bit
|
|
|
073263 |
------------
|
|
|
073263 |
|
|
|
073263 |
Patch 7.4.385
|
|
|
073263 |
Problem: When building with tiny or small features building the .mo files
|
|
|
073263 |
fails.
|
|
|
073263 |
Solution: In autoconf do not setup for building the .mo files when it would
|
|
|
073263 |
fail.
|
|
|
073263 |
Files: src/configure.in, src/auto/configure
|
|
|
073263 |
|
|
|
073263 |
|
|
|
073263 |
*** ../vim-7.4.384/src/configure.in 2014-05-22 14:44:08.094481148 +0200
|
|
|
073263 |
--- src/configure.in 2014-07-27 21:26:39.349275928 +0200
|
|
|
073263 |
***************
|
|
|
073263 |
*** 3818,3824 ****
|
|
|
073263 |
else
|
|
|
073263 |
AC_MSG_RESULT([msgfmt not found - disabled]);
|
|
|
073263 |
fi
|
|
|
073263 |
! if test $have_gettext = "yes"; then
|
|
|
073263 |
AC_DEFINE(HAVE_GETTEXT)
|
|
|
073263 |
MAKEMO=yes
|
|
|
073263 |
AC_SUBST(MAKEMO)
|
|
|
073263 |
--- 3818,3824 ----
|
|
|
073263 |
else
|
|
|
073263 |
AC_MSG_RESULT([msgfmt not found - disabled]);
|
|
|
073263 |
fi
|
|
|
073263 |
! if test $have_gettext = "yes" -a "x$features" != "xtiny" -a "x$features" != "xsmall"; then
|
|
|
073263 |
AC_DEFINE(HAVE_GETTEXT)
|
|
|
073263 |
MAKEMO=yes
|
|
|
073263 |
AC_SUBST(MAKEMO)
|
|
|
073263 |
*** ../vim-7.4.384/src/auto/configure 2014-05-22 14:44:08.098481148 +0200
|
|
|
073263 |
--- src/auto/configure 2014-07-27 21:26:41.969275909 +0200
|
|
|
073263 |
***************
|
|
|
073263 |
*** 12966,12972 ****
|
|
|
073263 |
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: msgfmt not found - disabled" >&5
|
|
|
073263 |
$as_echo "msgfmt not found - disabled" >&6; };
|
|
|
073263 |
fi
|
|
|
073263 |
! if test $have_gettext = "yes"; then
|
|
|
073263 |
$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h
|
|
|
073263 |
|
|
|
073263 |
MAKEMO=yes
|
|
|
073263 |
--- 12966,12972 ----
|
|
|
073263 |
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: msgfmt not found - disabled" >&5
|
|
|
073263 |
$as_echo "msgfmt not found - disabled" >&6; };
|
|
|
073263 |
fi
|
|
|
073263 |
! if test $have_gettext = "yes" -a "x$features" != "xtiny" -a "x$features" != "xsmall"; then
|
|
|
073263 |
$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h
|
|
|
073263 |
|
|
|
073263 |
MAKEMO=yes
|
|
|
073263 |
*** ../vim-7.4.384/src/version.c 2014-07-30 13:20:35.719622565 +0200
|
|
|
073263 |
--- src/version.c 2014-07-30 13:22:07.295621907 +0200
|
|
|
073263 |
***************
|
|
|
073263 |
*** 736,737 ****
|
|
|
073263 |
--- 736,739 ----
|
|
|
073263 |
{ /* Add new patch number below this line */
|
|
|
073263 |
+ /**/
|
|
|
073263 |
+ 385,
|
|
|
073263 |
/**/
|
|
|
073263 |
|
|
|
073263 |
--
|
|
|
073263 |
"You're fired." (1980)
|
|
|
073263 |
"You're laid off." (1985)
|
|
|
073263 |
"You're downsized." (1990)
|
|
|
073263 |
"You're rightsized." (1992)
|
|
|
073263 |
(Scott Adams - The Dilbert principle)
|
|
|
073263 |
|
|
|
073263 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
073263 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
073263 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
073263 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|