|
Karsten Hopp |
414042 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
414042 |
Subject: Patch 7.4.728
|
|
Karsten Hopp |
414042 |
Fcc: outbox
|
|
Karsten Hopp |
414042 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
414042 |
Mime-Version: 1.0
|
|
Karsten Hopp |
414042 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
414042 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
414042 |
------------
|
|
Karsten Hopp |
414042 |
|
|
Karsten Hopp |
414042 |
Patch 7.4.728
|
|
Karsten Hopp |
414042 |
Problem: Can't build with some version of Visual Studio 2015.
|
|
Karsten Hopp |
414042 |
Solution: Recognize another version 14 number. (Sinan)
|
|
Karsten Hopp |
414042 |
Files: src/Make_mvc.mak
|
|
Karsten Hopp |
414042 |
|
|
Karsten Hopp |
414042 |
|
|
Karsten Hopp |
414042 |
*** ../vim-7.4.727/src/Make_mvc.mak 2015-05-04 16:18:18.127624758 +0200
|
|
Karsten Hopp |
414042 |
--- src/Make_mvc.mak 2015-05-06 11:32:34.209224175 +0200
|
|
Karsten Hopp |
414042 |
***************
|
|
Karsten Hopp |
414042 |
*** 446,452 ****
|
|
Karsten Hopp |
414042 |
!if "$(_NMAKE_VER)" == "12.00.21005.1"
|
|
Karsten Hopp |
414042 |
MSVCVER = 12.0
|
|
Karsten Hopp |
414042 |
!endif
|
|
Karsten Hopp |
414042 |
! !if "$(_NMAKE_VER)" == "14.00.22609.0"
|
|
Karsten Hopp |
414042 |
MSVCVER = 14.0
|
|
Karsten Hopp |
414042 |
!endif
|
|
Karsten Hopp |
414042 |
!endif
|
|
Karsten Hopp |
414042 |
--- 446,452 ----
|
|
Karsten Hopp |
414042 |
!if "$(_NMAKE_VER)" == "12.00.21005.1"
|
|
Karsten Hopp |
414042 |
MSVCVER = 12.0
|
|
Karsten Hopp |
414042 |
!endif
|
|
Karsten Hopp |
414042 |
! !if ("$(_NMAKE_VER)" == "14.00.22609.0") || ("$(_NMAKE_VER)" == "14.00.22816.0")
|
|
Karsten Hopp |
414042 |
MSVCVER = 14.0
|
|
Karsten Hopp |
414042 |
!endif
|
|
Karsten Hopp |
414042 |
!endif
|
|
Karsten Hopp |
414042 |
*** ../vim-7.4.727/src/version.c 2015-05-06 06:51:41.909488669 +0200
|
|
Karsten Hopp |
414042 |
--- src/version.c 2015-05-06 11:31:46.601759813 +0200
|
|
Karsten Hopp |
414042 |
***************
|
|
Karsten Hopp |
414042 |
*** 743,744 ****
|
|
Karsten Hopp |
414042 |
--- 743,746 ----
|
|
Karsten Hopp |
414042 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
414042 |
+ /**/
|
|
Karsten Hopp |
414042 |
+ 728,
|
|
Karsten Hopp |
414042 |
/**/
|
|
Karsten Hopp |
414042 |
|
|
Karsten Hopp |
414042 |
--
|
|
Karsten Hopp |
414042 |
In many of the more relaxed civilizations on the Outer Eastern Rim of the
|
|
Karsten Hopp |
414042 |
Galaxy, "The Hitchhiker's Guide to the Galaxy" has already supplanted the
|
|
Karsten Hopp |
414042 |
great "Encyclopedia Galactica" as the standard repository of all knowledge
|
|
Karsten Hopp |
414042 |
and wisdom, for though it has many omissions and contains much that is
|
|
Karsten Hopp |
414042 |
apocryphal, or at least wildly inaccurate, it scores over the older, more
|
|
Karsten Hopp |
414042 |
pedestrian work in two important respects.
|
|
Karsten Hopp |
414042 |
First, it is slightly cheaper; and second, it has the words "DON'T PANIC"
|
|
Karsten Hopp |
414042 |
inscribed in large friendly letters on its cover.
|
|
Karsten Hopp |
414042 |
-- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
|
|
Karsten Hopp |
414042 |
|
|
Karsten Hopp |
414042 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
414042 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
414042 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
414042 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|