[vim/f18] - patchlevel 665

Karsten Hopp karsten at fedoraproject.org
Thu Oct 4 21:38:58 UTC 2012


commit 00b5f7694e8641411baa7369c6e4f7a8c3af334a
Author: Karsten Hopp <karsten at redhat.com>
Date:   Fri Oct 5 00:36:17 2012 +0200

    - patchlevel 665

 7.3.665 |   80 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 80 insertions(+), 0 deletions(-)
---
diff --git a/7.3.665 b/7.3.665
new file mode 100644
index 0000000..2f6c30e
--- /dev/null
+++ b/7.3.665
@@ -0,0 +1,80 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.665
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.665
+Problem:    MSVC 11 is not supported.
+Solution:   Recognize MSVC 11. (Raymond Ko)
+Files:	    src/Make_mvc.mak
+
+
+*** ../vim-7.3.664/src/Make_mvc.mak	2012-09-05 17:57:34.000000000 +0200
+--- src/Make_mvc.mak	2012-09-18 18:24:48.000000000 +0200
+***************
+*** 395,400 ****
+--- 395,403 ----
+  !if "$(_NMAKE_VER)" == "10.00.30319.01"
+  MSVCVER = 10.0
+  !endif
++ !if "$(_NMAKE_VER)" == "11.00.50727.1"
++ MSVCVER = 11.0
++ !endif
+  !endif
+  
+  # Abort bulding VIM if version of VC is unrecognised.
+***************
+*** 409,415 ****
+  !endif
+  
+  # Convert processor ID to MVC-compatible number
+! !if ("$(MSVCVER)" != "8.0") && ("$(MSVCVER)" != "9.0") && ("$(MSVCVER)" != "10.0")
+  !if "$(CPUNR)" == "i386"
+  CPUARG = /G3
+  !elseif "$(CPUNR)" == "i486"
+--- 412,418 ----
+  !endif
+  
+  # Convert processor ID to MVC-compatible number
+! !if ("$(MSVCVER)" != "8.0") && ("$(MSVCVER)" != "9.0") && ("$(MSVCVER)" != "10.0") && ("$(MSVCVER)" != "11.0")
+  !if "$(CPUNR)" == "i386"
+  CPUARG = /G3
+  !elseif "$(CPUNR)" == "i486"
+***************
+*** 443,449 ****
+  OPTFLAG = /Ox
+  !endif
+  
+! !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0")
+  # Use link time code generation if not worried about size
+  !if "$(OPTIMIZE)" != "SPACE"
+  OPTFLAG = $(OPTFLAG) /GL
+--- 446,452 ----
+  OPTFLAG = /Ox
+  !endif
+  
+! !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0")
+  # Use link time code generation if not worried about size
+  !if "$(OPTIMIZE)" != "SPACE"
+  OPTFLAG = $(OPTFLAG) /GL
+*** ../vim-7.3.664/src/version.c	2012-09-18 18:03:33.000000000 +0200
+--- src/version.c	2012-09-18 18:26:16.000000000 +0200
+***************
+*** 721,722 ****
+--- 721,724 ----
+  {   /* Add new patch number below this line */
++ /**/
++     665,
+  /**/
+
+-- 
+There are 10 kinds of people: Those who understand binary and those who don't.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///


More information about the scm-commits mailing list