]> git.pld-linux.org Git - packages/vim.git/blob - 7.2.364
- new
[packages/vim.git] / 7.2.364
1 To: vim-dev@vim.org
2 Subject: Patch 7.2.364 (extra)
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.2.364 (extra)
11 Problem:    Can't build gvimext.dll on Win 7 x64 using MinGW (John Marriott)
12 Solution:   Check if _MSC_VER is defined. (Andy Kittner)
13 Files:      src/GvimExt/gvimext.h
14
15
16 *** ../vim-7.2.363/src/GvimExt/gvimext.h        2006-04-24 21:23:03.000000000 +0200
17 --- src/GvimExt/gvimext.h       2010-02-17 17:20:00.000000000 +0100
18 ***************
19 *** 14,22 ****
20   #if !defined(AFX_STDAFX_H__3389658B_AD83_11D3_9C1E_0090278BBD99__INCLUDED_)
21   #define AFX_STDAFX_H__3389658B_AD83_11D3_9C1E_0090278BBD99__INCLUDED_
22   
23 ! #if _MSC_VER > 1000
24   #pragma once
25 ! #endif // _MSC_VER > 1000
26   
27   // Insert your headers here
28   // #define WIN32_LEAN_AND_MEAN                // Exclude rarely-used stuff from Windows headers
29 --- 14,22 ----
30   #if !defined(AFX_STDAFX_H__3389658B_AD83_11D3_9C1E_0090278BBD99__INCLUDED_)
31   #define AFX_STDAFX_H__3389658B_AD83_11D3_9C1E_0090278BBD99__INCLUDED_
32   
33 ! #if defined(_MSC_VER) && _MSC_VER > 1000
34   #pragma once
35 ! #endif
36   
37   // Insert your headers here
38   // #define WIN32_LEAN_AND_MEAN                // Exclude rarely-used stuff from Windows headers
39 ***************
40 *** 34,40 ****
41   #define INC_OLE2      // WIN32, get ole2 from windows.h
42   
43   /* Visual Studio 2005 has 'deprecated' many of the standard CRT functions */
44 ! #if _MSC_VER >= 1400
45   # define _CRT_SECURE_NO_DEPRECATE
46   # define _CRT_NONSTDC_NO_DEPRECATE
47   #endif
48 --- 34,40 ----
49   #define INC_OLE2      // WIN32, get ole2 from windows.h
50   
51   /* Visual Studio 2005 has 'deprecated' many of the standard CRT functions */
52 ! #if defined(_MSC_VER) && _MSC_VER >= 1400
53   # define _CRT_SECURE_NO_DEPRECATE
54   # define _CRT_NONSTDC_NO_DEPRECATE
55   #endif
56 ***************
57 *** 44,50 ****
58   #include <shlobj.h>
59   
60   /* Accommodate old versions of VC that don't have a modern Platform SDK */
61 ! #if _MSC_VER < 1300
62   # undef  UINT_PTR
63   # define UINT_PTR UINT
64   #endif
65 --- 44,50 ----
66   #include <shlobj.h>
67   
68   /* Accommodate old versions of VC that don't have a modern Platform SDK */
69 ! #if defined(_MSC_VER) && _MSC_VER < 1300
70   # undef  UINT_PTR
71   # define UINT_PTR UINT
72   #endif
73 *** ../vim-7.2.363/src/version.c        2010-02-17 16:40:47.000000000 +0100
74 --- src/version.c       2010-02-17 17:23:15.000000000 +0100
75 ***************
76 *** 683,684 ****
77 --- 683,686 ----
78   {   /* Add new patch number below this line */
79 + /**/
80 +     364,
81   /**/
82
83 -- 
84 hundred-and-one symptoms of being an internet addict:
85 245. You use Real Audio to listen to a radio station from a distant
86      city rather than turn on your stereo system.
87
88  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
89 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
90 \\\        download, build and distribute -- http://www.A-A-P.org        ///
91  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.03288 seconds and 3 git commands to generate.