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.100 < prev    next >
Encoding:
Internet Message Format  |  2003-09-26  |  2.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.100
  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.100
  11. Problem:    "make proto" fails when compiled with the Perl interface.
  12. Solution:   Remove "-fno.*" from PERL_CFLAGS, cproto sees it as its option.
  13. Files:      src/auto/configure, src/configure.in
  14.  
  15.  
  16. *** ../vim-6.2.099/src/auto/configure    Sun Jun  1 15:42:39 2003
  17. --- src/auto/configure    Sat Sep 13 21:22:56 2003
  18. ***************
  19. *** 1487,1494 ****
  20.         fi
  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'`
  25.         if test "X$perlcppflags" != "X"; then
  26.       PERL_CFLAGS="$perlcppflags"
  27.         fi
  28. --- 1542,1549 ----
  29.         fi
  30.         vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'`
  31.         
  32. !             perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
  33. !           -e 'ccflags;perl_inc' | sed -e 's/-fno[^ ]*//'`
  34.         if test "X$perlcppflags" != "X"; then
  35.       PERL_CFLAGS="$perlcppflags"
  36.         fi
  37. *** ../vim-6.2.099/src/configure.in    Sat May 31 22:30:02 2003
  38. --- src/configure.in    Sat Sep 13 21:22:34 2003
  39. ***************
  40. *** 266,273 ****
  41.         fi
  42.         vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'`
  43.         AC_SUBST(vi_cv_perllib)
  44.         perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
  45. !           -e 'ccflags;perl_inc'`
  46.         if test "X$perlcppflags" != "X"; then
  47.       PERL_CFLAGS="$perlcppflags"
  48.         fi
  49. --- 291,299 ----
  50.         fi
  51.         vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'`
  52.         AC_SUBST(vi_cv_perllib)
  53. +       dnl Remove "-fno-something", it breaks using cproto.
  54.         perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
  55. !           -e 'ccflags;perl_inc' | sed -e 's/-fno[[^ ]]*//'`
  56.         if test "X$perlcppflags" != "X"; then
  57.       PERL_CFLAGS="$perlcppflags"
  58.         fi
  59. *** ../vim-6.2.099/src/version.c    Sat Sep 27 19:14:49 2003
  60. --- src/version.c    Sat Sep 27 19:16:46 2003
  61. ***************
  62. *** 632,633 ****
  63. --- 638,641 ----
  64.   {   /* Add new patch number below this line */
  65. + /**/
  66. +     100,
  67.   /**/
  68.  
  69. -- 
  70. To define recursion, we must first define recursion.
  71.  
  72.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  73. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  74. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  75.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  76.