]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.207
- rel 3; no more tinfo
[packages/vim.git] / 7.3.207
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.207
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.207
11 Problem:    Can't compile with MSVC with pentium4 and 64 bit.
12 Solution:   Only use SSE2 for 32 bit. (Mike Williams)
13 Files:      src/Make_mvc.mak
14
15
16 *** ../mercurial/vim73/src/Make_mvc.mak 2011-02-15 18:06:11.000000000 +0100
17 --- src/Make_mvc.mak    2011-06-04 11:59:38.000000000 +0200
18 ***************
19 *** 409,416 ****
20   CPUARG =
21   !endif
22   !else
23 ! # VC8/9 only allows specifying SSE architecture
24 ! !if "$(CPUNR)" == "pentium4"
25   CPUARG = /arch:SSE2
26   !endif
27   !endif
28 --- 409,416 ----
29   CPUARG =
30   !endif
31   !else
32 ! # VC8/9/10 only allows specifying SSE architecture but only for 32bit
33 ! !if "$(ASSEMBLY_ARCHITECTURE)" == "x86" && "$(CPUNR)" == "pentium4"
34   CPUARG = /arch:SSE2
35   !endif
36   !endif
37 *** ../vim-7.3.206/src/version.c        2011-05-25 21:18:02.000000000 +0200
38 --- src/version.c       2011-06-12 20:30:30.000000000 +0200
39 ***************
40 *** 711,712 ****
41 --- 711,714 ----
42   {   /* Add new patch number below this line */
43 + /**/
44 +     207,
45   /**/
46
47 -- 
48 "The question of whether computers can think is just like the question
49 of whether submarines can swim."      -- Edsger W. Dijkstra
50
51  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
52 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
53 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
54  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.050057 seconds and 3 git commands to generate.