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.1.340 < prev    next >
Encoding:
Internet Message Format  |  2003-02-16  |  2.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.340 (extra)
  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.1.340 (extra, depends on 6.1.332)
  11. Problem:    Win32: Can't compile the Perl interface with nmake.
  12. Solution:   Don't compare the version number as a string but as a number.
  13.         (Juergen Kraemer)
  14. Files:        src/Make_mvc.mak
  15.  
  16.  
  17. *** ../vim61.339/src/Make_mvc.mak    Sun Feb 16 22:21:17 2003
  18. --- src/Make_mvc.mak    Mon Feb 17 10:04:19 2003
  19. ***************
  20. *** 403,409 ****
  21.   !ifdef PERL
  22.   !message Perl requested (version $(PERL_VER)) - root dir is "$(PERL)"
  23.   !if "$(DYNAMIC_PERL)" == "yes"
  24. ! !if "$(PERL_VER)" >= "56"
  25.   !message Perl DLL will be loaded dynamically
  26.   !else
  27.   !message Dynamic loading is not supported for Perl versions earlier than 5.6.0
  28. --- 403,409 ----
  29.   !ifdef PERL
  30.   !message Perl requested (version $(PERL_VER)) - root dir is "$(PERL)"
  31.   !if "$(DYNAMIC_PERL)" == "yes"
  32. ! !if $(PERL_VER) >= 56
  33.   !message Perl DLL will be loaded dynamically
  34.   !else
  35.   !message Dynamic loading is not supported for Perl versions earlier than 5.6.0
  36. ***************
  37. *** 420,426 ****
  38.   PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core
  39.   
  40.   # Version-dependent stuff
  41. ! !if "$(PERL_VER)" == "55"
  42.   PERL_LIB = $(PERL_INCDIR)\perl.lib
  43.   !else
  44.   PERL_DLL = perl$(PERL_VER).dll
  45. --- 420,426 ----
  46.   PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core
  47.   
  48.   # Version-dependent stuff
  49. ! !if $(PERL_VER) == 55
  50.   PERL_LIB = $(PERL_INCDIR)\perl.lib
  51.   !else
  52.   PERL_DLL = perl$(PERL_VER).dll
  53. *** ../vim61.339/src/version.c    Sun Feb 16 22:58:57 2003
  54. --- src/version.c    Mon Feb 17 10:19:54 2003
  55. ***************
  56. *** 608,609 ****
  57. --- 612,615 ----
  58.   {   /* Add new patch number below this line */
  59. + /**/
  60. +     340,
  61.   /**/
  62.  
  63. -- 
  64. ARTHUR: Right! Knights! Forward!
  65.    ARTHUR leads a charge toward the castle.  Various shots of them battling on,
  66.    despite being hit by a variety of farm animals.
  67.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  68.  
  69.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  70. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  71. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  72.  \\\     Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///
  73.