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.1 / 7.1.110 < prev    next >
Encoding:
Internet Message Format  |  2007-11-19  |  2.2 KB

  1. To: vim-dev@vim.org
  2. Subject: patch 7.1.110
  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.1.110 (after 7.1.102)
  11. Problem:    Win32: Still compilation problems with Perl.
  12. Solution:   Change the #ifdefs. (Suresh Govindachar)
  13. Files:        src/if_perl.xs
  14.  
  15.  
  16. *** ../vim-7.1.109/src/if_perl.xs    Thu Sep 13 15:19:32 2007
  17. --- src/if_perl.xs    Fri Sep 14 21:23:38 2007
  18. ***************
  19. *** 48,60 ****
  20.    * The changes include addition of two symbols (Perl_sv_2iv_flags,
  21.    * Perl_newXS_flags) not present in earlier releases.
  22.    *
  23. !  * Jan Dubois suggested the following guarding scheme:
  24.    */
  25. ! #if (ACTIVEPERL_VERSION >= 822)
  26. ! # define PERL589_OR_LATER
  27. ! #endif
  28. ! #if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 9)
  29. ! # define PERL589_OR_LATER
  30.   #endif
  31.   #if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
  32.   # define PERL589_OR_LATER
  33. --- 48,62 ----
  34.    * The changes include addition of two symbols (Perl_sv_2iv_flags,
  35.    * Perl_newXS_flags) not present in earlier releases.
  36.    *
  37. !  * Jan Dubois suggested the following guarding scheme.
  38. !  *
  39. !  * Active State defined ACTIVEPERL_VERSION as a string in versions before
  40. !  * 5.8.8; and so the comparison to 822 below needs to be guarded.
  41.    */
  42. ! #if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
  43. ! # if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
  44. ! #  define PERL589_OR_LATER
  45. ! # endif
  46.   #endif
  47.   #if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
  48.   # define PERL589_OR_LATER
  49. *** ../vim-7.1.109/src/version.c    Sat Sep 15 14:06:41 2007
  50. --- src/version.c    Sat Sep 15 14:48:05 2007
  51. ***************
  52. *** 668,669 ****
  53. --- 668,671 ----
  54.   {   /* Add new patch number below this line */
  55. + /**/
  56. +     110,
  57.   /**/
  58.  
  59. -- 
  60. "It's so simple to be wise.  Just think of something stupid to say
  61. and then don't say it."        -- Sam Levenson
  62.  
  63.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  64. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  65. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  66.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  67.