]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.207
- new
[packages/vim.git] / 7.3.207
CommitLineData
a2e11672
AG
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.207
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.207
11Problem: Can't compile with MSVC with pentium4 and 64 bit.
12Solution: Only use SSE2 for 32 bit. (Mike Williams)
13Files: 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
49of 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.042797 seconds and 4 git commands to generate.