]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.056
- now it works...
[packages/vim.git] / 6.2.056
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.056 (extra)
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 6.2.056 (extra)
11 Problem:    Building with Sniff++ doesn't work.
12 Solution:   Use the multi-threaded libc when needed. (Holger Ditting)
13 Files:      src/Make_mvc.mak
14
15
16 *** ../vim-6.2.055/src/Make_mvc.mak     Sat May 24 21:43:54 2003
17 --- src/Make_mvc.mak    Thu Jul  3 20:12:00 2003
18 ***************
19 *** 251,261 ****
20   RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG
21   PDB = /Fd$(OUTDIR)/
22   LINK_PDB = /PDB:$(OUTDIR)/
23 ! ! ifndef USE_MSVCRT
24 ! LIBC = libc.lib
25 ! ! else
26   CFLAGS = $(CFLAGS) -MD
27   LIBC = msvcrt.lib
28   ! endif
29   !else  # DEBUG
30   VIM = vimd
31 --- 251,263 ----
32   RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG
33   PDB = /Fd$(OUTDIR)/
34   LINK_PDB = /PDB:$(OUTDIR)/
35 ! ! ifdef USE_MSVCRT
36   CFLAGS = $(CFLAGS) -MD
37   LIBC = msvcrt.lib
38 + ! elseif defined(MULTITHREADED)
39 + LIBC = libcmt.lib
40 + ! else
41 + LIBC = libc.lib
42   ! endif
43   !else  # DEBUG
44   VIM = vimd
45 *** ../vim-6.2.055/src/version.c        Sun Jul 27 15:06:48 2003
46 --- src/version.c       Sun Jul 27 15:08:38 2003
47 ***************
48 *** 632,633 ****
49 --- 632,635 ----
50   {   /* Add new patch number below this line */
51 + /**/
52 +     56,
53   /**/
54
55 -- 
56 If you had to identify, in one word, the reason why the
57 human race has not achieved, and never will achieve, its
58 full potential, that word would be "meetings."
59
60  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
61 ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
62 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
63  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
This page took 0.091781 seconds and 3 git commands to generate.