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.666 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  3.1 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.6
  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.666
  11. Problem:    With MSVC 11 Win32.mak is not found.
  12. Solution:   Add the SDK_INCLUDE_DIR variable. (Raymond Ko)
  13. Files:        src/Make_mvc.mak
  14.  
  15.  
  16. *** ../vim-7.3.665/src/Make_mvc.mak    2012-09-18 18:27:07.000000000 +0200
  17. --- src/Make_mvc.mak    2012-09-18 21:58:09.000000000 +0200
  18. ***************
  19. *** 1,7 ****
  20.   # Makefile for Vim on Win32 (Windows NT/2000/XP/2003 and Windows 95/98/Me)
  21.   # and Win64, using the Microsoft Visual C++ compilers. Known to work with
  22.   # VC5, VC6 (VS98), VC7.0 (VS2002), VC7.1 (VS2003), VC8 (VS2005),
  23. ! # VC9 (VS2008), and VC10 (VS2010).
  24.   #
  25.   # To build using other Windows compilers, see INSTALLpc.txt
  26.   #
  27. --- 1,7 ----
  28.   # Makefile for Vim on Win32 (Windows NT/2000/XP/2003 and Windows 95/98/Me)
  29.   # and Win64, using the Microsoft Visual C++ compilers. Known to work with
  30.   # VC5, VC6 (VS98), VC7.0 (VS2002), VC7.1 (VS2003), VC8 (VS2005),
  31. ! # VC9 (VS2008), VC10 (VS2010) and VC11 (VS2012)
  32.   #
  33.   # To build using other Windows compilers, see INSTALLpc.txt
  34.   #
  35. ***************
  36. *** 15,20 ****
  37. --- 15,23 ----
  38.   # This will build the console version of Vim with no additional interfaces.
  39.   # To add features, define any of the following:
  40.   #
  41. + #     For MSVC 11 you need to specify where the Win32.mak file is, e.g.:
  42. + #        SDK_INCLUDE_DIR="C:\Program Files\Microsoft SDKs\Windows\v7.1\Include"
  43. + #
  44.   #    !!!!  After changing features do "nmake clean" first  !!!!
  45.   #
  46.   #       Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is BIG)
  47. ***************
  48. *** 227,233 ****
  49. --- 230,241 ----
  50.   
  51.   # Get all sorts of useful, standard macros from the Platform SDK.
  52.   
  53. + !ifdef SDK_INCLUDE_DIR
  54. + !include $(SDK_INCLUDE_DIR)\Win32.mak
  55. + !else
  56.   !include <Win32.mak>
  57. + !endif
  58.   
  59.   # Flag to turn on Win64 compatibility warnings for VC7.x and VC8.
  60.   WP64CHECK = /Wp64
  61. ***************
  62. *** 911,917 ****
  63.   
  64.   # Report link time code generation progress if used. 
  65.   !ifdef NODEBUG
  66. ! !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0")
  67.   !if "$(OPTIMIZE)" != "SPACE"
  68.   LINKARGS1 = $(LINKARGS1) /LTCG:STATUS
  69.   !endif
  70. --- 919,925 ----
  71.   
  72.   # Report link time code generation progress if used. 
  73.   !ifdef NODEBUG
  74. ! !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0")
  75.   !if "$(OPTIMIZE)" != "SPACE"
  76.   LINKARGS1 = $(LINKARGS1) /LTCG:STATUS
  77.   !endif
  78. *** ../vim-7.3.665/src/version.c    2012-09-18 18:27:07.000000000 +0200
  79. --- src/version.c    2012-09-18 21:58:44.000000000 +0200
  80. ***************
  81. *** 721,722 ****
  82. --- 721,724 ----
  83.   {   /* Add new patch number below this line */
  84. + /**/
  85. +     666,
  86.   /**/
  87.  
  88. -- 
  89. Be nice to your kids...  they'll be the ones choosing your nursing home.
  90.  
  91.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  92. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  93. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  94.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  95.