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 / 6.2.158 < prev    next >
Encoding:
Internet Message Format  |  2003-12-28  |  2.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.158
  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 6.2.158
  11. Problem:    The sed command on Solaris and HPUX doesn't work for a line that
  12.         doesn't end in a newline.
  13. Solution:   Add a newline when feeding text to sed. (Mark Waggoner)
  14. Files:        src/configure.in, src/auto/configure
  15.  
  16.  
  17. *** ../vim-6.2.157/src/auto/configure    Sun Nov  2 15:37:11 2003
  18. --- src/auto/configure    Wed Dec 24 14:10:23 2003
  19. ***************
  20. *** 1572,1578 ****
  21.         vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'`
  22.         
  23.               perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
  24. !           -e 'ccflags;perl_inc' | sed -e 's/-fno[^ ]*//'`
  25.         if test "X$perlcppflags" != "X"; then
  26.       PERL_CFLAGS="$perlcppflags"
  27.         fi
  28. --- 1582,1588 ----
  29.         vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'`
  30.         
  31.               perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
  32. !           -e 'ccflags;perl_inc;print"\n"' | sed -e 's/-fno[^ ]*//'`
  33.         if test "X$perlcppflags" != "X"; then
  34.       PERL_CFLAGS="$perlcppflags"
  35.         fi
  36. *** ../vim-6.2.157/src/configure.in    Sun Nov  2 15:37:11 2003
  37. --- src/configure.in    Wed Dec 24 14:09:32 2003
  38. ***************
  39. *** 313,319 ****
  40.         AC_SUBST(vi_cv_perllib)
  41.         dnl Remove "-fno-something", it breaks using cproto.
  42.         perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
  43. !           -e 'ccflags;perl_inc' | sed -e 's/-fno[[^ ]]*//'`
  44.         if test "X$perlcppflags" != "X"; then
  45.       PERL_CFLAGS="$perlcppflags"
  46.         fi
  47. --- 314,320 ----
  48.         AC_SUBST(vi_cv_perllib)
  49.         dnl Remove "-fno-something", it breaks using cproto.
  50.         perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
  51. !           -e 'ccflags;perl_inc;print"\n"' | sed -e 's/-fno[[^ ]]*//'`
  52.         if test "X$perlcppflags" != "X"; then
  53.       PERL_CFLAGS="$perlcppflags"
  54.         fi
  55. *** ../vim-6.2.157/src/version.c    Mon Dec 29 20:21:49 2003
  56. --- src/version.c    Mon Dec 29 20:25:14 2003
  57. ***************
  58. *** 639,640 ****
  59. --- 639,642 ----
  60.   {   /* Add new patch number below this line */
  61. + /**/
  62. +     158,
  63.   /**/
  64.  
  65. -- 
  66. A fool learns from his mistakes, a wise man from someone elses.
  67.  
  68.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  69. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  70. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  71.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  72.