]> git.pld-linux.org Git - packages/vim.git/blob - 7.1.273
- typo
[packages/vim.git] / 7.1.273
1 To: vim-dev@vim.org
2 Subject: Patch 7.1.273
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 7.1.273
11 Problem:    When profiling on Linux Vim exits early. (Liu Yubao)
12 Solution:   When profiling don't exit on SIGPROF.
13 Files:      src/Makefile, src/os_unix.c
14
15
16 *** ../vim-7.1.272/src/Makefile Wed Mar 12 12:23:18 2008
17 --- src/Makefile        Wed Mar 12 13:11:07 2008
18 ***************
19 *** 545,551 ****
20   # For unknown reasons adding "-lc" fixes a linking problem with GCC.  That's
21   # probably a bug in the "-pg" implementation.
22   # Need to recompile everything after changing this: "make clean" "make".
23 ! #PROFILE_CFLAGS = -pg -g
24   #PROFILE_LIBS = -pg
25   #PROFILE_LIBS = -pg -lc
26   
27 --- 545,551 ----
28   # For unknown reasons adding "-lc" fixes a linking problem with GCC.  That's
29   # probably a bug in the "-pg" implementation.
30   # Need to recompile everything after changing this: "make clean" "make".
31 ! #PROFILE_CFLAGS = -pg -g -DWE_ARE_PROFILING
32   #PROFILE_LIBS = -pg
33   #PROFILE_LIBS = -pg -lc
34   
35 *** ../vim-7.1.272/src/os_unix.c        Sun Feb 10 22:25:12 2008
36 --- src/os_unix.c       Wed Mar  5 22:15:41 2008
37 ***************
38 *** 269,276 ****
39   #ifdef SIGVTALRM
40       {SIGVTALRM,           "VTALRM",   TRUE},
41   #endif
42 ! #if defined(SIGPROF) && !defined(FEAT_MZSCHEME)
43 !     /* MzScheme uses SIGPROF for its own needs */
44       {SIGPROF,     "PROF",     TRUE},
45   #endif
46   #ifdef SIGXCPU
47 --- 269,277 ----
48   #ifdef SIGVTALRM
49       {SIGVTALRM,           "VTALRM",   TRUE},
50   #endif
51 ! #if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
52 !     /* MzScheme uses SIGPROF for its own needs; On Linux with profiling
53 !      * this makes Vim exit.  WE_ARE_PROFILING is defined in Makefile.  */
54       {SIGPROF,     "PROF",     TRUE},
55   #endif
56   #ifdef SIGXCPU
57 *** ../vim-7.1.272/src/version.c        Wed Mar 12 12:22:56 2008
58 --- src/version.c       Wed Mar 12 13:08:59 2008
59 ***************
60 *** 668,669 ****
61 --- 668,671 ----
62   {   /* Add new patch number below this line */
63 + /**/
64 +     273,
65   /**/
66
67 -- 
68 hundred-and-one symptoms of being an internet addict:
69 114. You are counting items, you go "0,1,2,3,4,5,6,7,8,9,A,B,C,D...".
70
71  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
72 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
73 \\\        download, build and distribute -- http://www.A-A-P.org        ///
74  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.089739 seconds and 3 git commands to generate.