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.0 / 7.0.137 < prev    next >
Encoding:
Internet Message Format  |  2006-10-16  |  2.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.0.137
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.0.137
  11. Problem:    Configure check for big features is wrong.
  12. Solution:   Change "==" to "=". (Martti Kuparinen)
  13. Files:        src/auto/configure, src/configure.in
  14.  
  15.  
  16. *** ../vim-7.0.136/src/auto/configure    Tue Oct 10 11:40:53 2006
  17. --- src/auto/configure    Tue Oct 17 11:41:59 2006
  18. ***************
  19. *** 15302,15308 ****
  20.       && test "x$GUITYPE" != "xCARBONGUI"; then
  21.     echo "$as_me:$LINENO: checking whether we need -framework Carbon" >&5
  22.   echo $ECHO_N "checking whether we need -framework Carbon... $ECHO_C" >&6
  23. !     if test "x$enable_multibyte" = "xyes" || test "x$features" == "xbig" \
  24.       || test "x$features" = "xhuge"; then
  25.       LIBS="$LIBS -framework Carbon"
  26.       echo "$as_me:$LINENO: result: yes" >&5
  27. --- 15302,15308 ----
  28.       && test "x$GUITYPE" != "xCARBONGUI"; then
  29.     echo "$as_me:$LINENO: checking whether we need -framework Carbon" >&5
  30.   echo $ECHO_N "checking whether we need -framework Carbon... $ECHO_C" >&6
  31. !     if test "x$enable_multibyte" = "xyes" || test "x$features" = "xbig" \
  32.       || test "x$features" = "xhuge"; then
  33.       LIBS="$LIBS -framework Carbon"
  34.       echo "$as_me:$LINENO: result: yes" >&5
  35. *** ../vim-7.0.136/src/configure.in    Tue Oct 10 11:40:53 2006
  36. --- src/configure.in    Tue Oct 17 11:40:59 2006
  37. ***************
  38. *** 2838,2844 ****
  39.       && test "x$GUITYPE" != "xCARBONGUI"; then
  40.     AC_MSG_CHECKING(whether we need -framework Carbon)
  41.     dnl check for MACOSX without Carbon GUI, but with FEAT_MBYTE
  42. !   if test "x$enable_multibyte" = "xyes" || test "x$features" == "xbig" \
  43.       || test "x$features" = "xhuge"; then
  44.       LIBS="$LIBS -framework Carbon"
  45.       AC_MSG_RESULT(yes)
  46. --- 2838,2844 ----
  47.       && test "x$GUITYPE" != "xCARBONGUI"; then
  48.     AC_MSG_CHECKING(whether we need -framework Carbon)
  49.     dnl check for MACOSX without Carbon GUI, but with FEAT_MBYTE
  50. !   if test "x$enable_multibyte" = "xyes" || test "x$features" = "xbig" \
  51.       || test "x$features" = "xhuge"; then
  52.       LIBS="$LIBS -framework Carbon"
  53.       AC_MSG_RESULT(yes)
  54. *** ../vim-7.0.136/src/version.c    Tue Oct 17 11:12:28 2006
  55. --- src/version.c    Tue Oct 17 11:49:14 2006
  56. ***************
  57. *** 668,669 ****
  58. --- 668,671 ----
  59.   {   /* Add new patch number below this line */
  60. + /**/
  61. +     137,
  62.   /**/
  63.  
  64. -- 
  65. CVS sux, men don't like commitment
  66.  
  67.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  68. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  69. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  70.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  71.