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.3 / 7.3.500 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  1.4 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.500
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.500
  11. Problem:    Ming makefile unconditionally sets WINVER.
  12. Solution:   Only defined when not already defined. (Yasuhiro Matsumoto)
  13. Files:        src/Make_ming.mak
  14.  
  15.  
  16. *** ../vim-7.3.499/src/Make_ming.mak    2012-03-28 17:43:06.000000000 +0200
  17. --- src/Make_ming.mak    2012-04-20 16:03:50.000000000 +0200
  18. ***************
  19. *** 51,57 ****
  20. --- 51,59 ----
  21.   # set to yes to enable OLE support
  22.   OLE=no
  23.   # Set the default $(WINVER) to make it work with pre-Win2k
  24. + ifndef WINVER
  25.   WINVER = 0x0400
  26. + endif
  27.   # Set to yes to enable Cscope support
  28.   CSCOPE=yes
  29.   # Set to yes to enable Netbeans support
  30. *** ../vim-7.3.499/src/version.c    2012-04-20 15:55:10.000000000 +0200
  31. --- src/version.c    2012-04-20 16:12:34.000000000 +0200
  32. ***************
  33. *** 716,717 ****
  34. --- 716,719 ----
  35.   {   /* Add new patch number below this line */
  36. + /**/
  37. +     500,
  38.   /**/
  39.  
  40. -- 
  41. Life is a gift, living is an art.        (Bram Moolenaar)
  42.  
  43.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  44. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  45. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  46.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  47.