home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.4 / 7.4.385 < prev    next >
Encoding:
Internet Message Format  |  2014-07-29  |  2.5 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.385
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.4.385
  11. Problem:    When building with tiny or small features building the .mo files
  12.         fails.
  13. Solution:   In autoconf do not setup for building the .mo files when it would
  14.         fail.
  15. Files:        src/configure.in, src/auto/configure
  16.  
  17.  
  18. *** ../vim-7.4.384/src/configure.in    2014-05-22 14:44:08.094481148 +0200
  19. --- src/configure.in    2014-07-27 21:26:39.349275928 +0200
  20. ***************
  21. *** 3818,3824 ****
  22.       else
  23.         AC_MSG_RESULT([msgfmt not found - disabled]);
  24.       fi
  25. !     if test $have_gettext = "yes"; then
  26.         AC_DEFINE(HAVE_GETTEXT)
  27.         MAKEMO=yes
  28.         AC_SUBST(MAKEMO)
  29. --- 3818,3824 ----
  30.       else
  31.         AC_MSG_RESULT([msgfmt not found - disabled]);
  32.       fi
  33. !     if test $have_gettext = "yes" -a "x$features" != "xtiny" -a "x$features" != "xsmall"; then
  34.         AC_DEFINE(HAVE_GETTEXT)
  35.         MAKEMO=yes
  36.         AC_SUBST(MAKEMO)
  37. *** ../vim-7.4.384/src/auto/configure    2014-05-22 14:44:08.098481148 +0200
  38. --- src/auto/configure    2014-07-27 21:26:41.969275909 +0200
  39. ***************
  40. *** 12966,12972 ****
  41.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: msgfmt not found - disabled" >&5
  42.   $as_echo "msgfmt not found - disabled" >&6; };
  43.       fi
  44. !     if test $have_gettext = "yes"; then
  45.         $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h
  46.   
  47.         MAKEMO=yes
  48. --- 12966,12972 ----
  49.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: msgfmt not found - disabled" >&5
  50.   $as_echo "msgfmt not found - disabled" >&6; };
  51.       fi
  52. !     if test $have_gettext = "yes" -a "x$features" != "xtiny" -a "x$features" != "xsmall"; then
  53.         $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h
  54.   
  55.         MAKEMO=yes
  56. *** ../vim-7.4.384/src/version.c    2014-07-30 13:20:35.719622565 +0200
  57. --- src/version.c    2014-07-30 13:22:07.295621907 +0200
  58. ***************
  59. *** 736,737 ****
  60. --- 736,739 ----
  61.   {   /* Add new patch number below this line */
  62. + /**/
  63. +     385,
  64.   /**/
  65.  
  66. -- 
  67. "You're fired." (1980)
  68. "You're laid off." (1985)
  69. "You're downsized." (1990)
  70. "You're rightsized." (1992)
  71.                 (Scott Adams - The Dilbert principle)
  72.  
  73.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  74. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  75. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  76.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  77.