• R/O
  • SSH

vim: 提交

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

修訂c7905d03c72e74540d91b1ebf3fc9cfffc2ba699 (tree)
時間2008-03-12 21:17:28
作者vimboss
Commitervimboss

Log Message

updated for version 7.1-273

Change Summary

差異

diff -r bdbaeab157e6 -r c7905d03c72e src/Makefile
--- a/src/Makefile Wed Mar 12 11:23:53 2008 +0000
+++ b/src/Makefile Wed Mar 12 12:17:28 2008 +0000
@@ -545,7 +545,7 @@
545545 # For unknown reasons adding "-lc" fixes a linking problem with GCC. That's
546546 # probably a bug in the "-pg" implementation.
547547 # Need to recompile everything after changing this: "make clean" "make".
548-#PROFILE_CFLAGS = -pg -g
548+#PROFILE_CFLAGS = -pg -g -DWE_ARE_PROFILING
549549 #PROFILE_LIBS = -pg
550550 #PROFILE_LIBS = -pg -lc
551551
diff -r bdbaeab157e6 -r c7905d03c72e src/os_unix.c
--- a/src/os_unix.c Wed Mar 12 11:23:53 2008 +0000
+++ b/src/os_unix.c Wed Mar 12 12:17:28 2008 +0000
@@ -269,8 +269,9 @@
269269 #ifdef SIGVTALRM
270270 {SIGVTALRM, "VTALRM", TRUE},
271271 #endif
272-#if defined(SIGPROF) && !defined(FEAT_MZSCHEME)
273- /* MzScheme uses SIGPROF for its own needs */
272+#if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
273+ /* MzScheme uses SIGPROF for its own needs; On Linux with profiling
274+ * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */
274275 {SIGPROF, "PROF", TRUE},
275276 #endif
276277 #ifdef SIGXCPU
diff -r bdbaeab157e6 -r c7905d03c72e src/version.c
--- a/src/version.c Wed Mar 12 11:23:53 2008 +0000
+++ b/src/version.c Wed Mar 12 12:17:28 2008 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 273,
671+/**/
670672 272,
671673 /**/
672674 271,
Show on old repository browser