r418 - in trunk/vim: debian upstream/patches

James Vega jamessan-guest at costa.debian.org
Wed Nov 30 12:53:23 UTC 2005


Author: jamessan-guest
Date: 2005-11-30 12:53:21 +0000 (Wed, 30 Nov 2005)
New Revision: 418

Added:
   trunk/vim/upstream/patches/6.4.003
Modified:
   trunk/vim/debian/README
   trunk/vim/debian/changelog
Log:
Upstream patch 6.4.003


Modified: trunk/vim/debian/README
===================================================================
--- trunk/vim/debian/README	2005-11-29 21:19:07 UTC (rev 417)
+++ trunk/vim/debian/README	2005-11-30 12:53:21 UTC (rev 418)
@@ -27,3 +27,4 @@
   SIZE  NAME     FIXES
   1705  6.4.001  (extra) Win32: can't compile the global IME code
   7802  6.4.002  Unix: may change owner of wrong file in rare cases
+  1463  6.4.003  (after 6.4.002) build problem on non-Unix system

Modified: trunk/vim/debian/changelog
===================================================================
--- trunk/vim/debian/changelog	2005-11-29 21:19:07 UTC (rev 417)
+++ trunk/vim/debian/changelog	2005-11-30 12:53:21 UTC (rev 418)
@@ -1,7 +1,7 @@
-vim (1:6.4-002+1) UNRELEASED; urgency=low
+vim (1:6.4-003+1) UNRELEASED; urgency=low
 
   [ Debian VIM Maintainers ]
-  * New upstream patch (002), see README.gz for details.
+  * New upstream patches (002 to 003), see README.gz for details.
 
   [ Stefano Zacchiroli ]
   * Added back vim-tiny package. (closes: #222138)
@@ -38,7 +38,7 @@
   [ Matthijs Mohlmann ]
   * Updated syntax for sshd_config and ssh_config.
 
- -- Debian VIM Maintainers <pkg-vim-maintainers at lists.alioth.debian.org>  Tue, 29 Nov 2005 15:59:35 -0500
+ -- Debian VIM Maintainers <pkg-vim-maintainers at lists.alioth.debian.org>  Wed, 30 Nov 2005 07:45:43 -0500
 
 vim (1:6.4-001+2) unstable; urgency=low
 

Added: trunk/vim/upstream/patches/6.4.003
===================================================================
--- trunk/vim/upstream/patches/6.4.003	2005-11-29 21:19:07 UTC (rev 417)
+++ trunk/vim/upstream/patches/6.4.003	2005-11-30 12:53:21 UTC (rev 418)
@@ -0,0 +1,49 @@
+To: vim-dev at vim.org
+Subject: Patch 6.4.003
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 6.4.003 (after 6.4.002)
+Problem:    Build problem on non-Unix systems.
+Solution:   Use stat() instead of lstat().
+Files:	    src/fileio.c
+
+
+*** ../vim-6.4.002/src/fileio.c	Tue Nov 29 19:29:15 2005
+--- src/fileio.c	Wed Nov 30 11:48:29 2005
+***************
+*** 3107,3113 ****
+--- 3107,3117 ----
+  		for (i = 4913; ; i += 123)
+  		{
+  		    sprintf((char *)gettail(IObuff), "%d", i);
++ #ifdef HAVE_LSTAT
+  		    if (mch_lstat((char *)IObuff, &st) < 0)
++ #else
++ 		    if (mch_stat((char *)IObuff, &st) < 0)
++ #endif
+  			break;
+  		}
+  		fd = mch_open((char *)IObuff, O_CREAT|O_WRONLY|O_EXCL, perm);
+*** ../vim-6.4.002/src/version.c	Tue Nov 29 19:29:15 2005
+--- src/version.c	Wed Nov 30 11:49:19 2005
+***************
+*** 643,644 ****
+--- 643,646 ----
+  {   /* Add new patch number below this line */
++ /**/
++     3,
+  /**/
+
+-- 
+If VIM were a woman, I'd marry her.  Slim, organized, helpful
+and beautiful; what's not to like?     --David A. Rogers
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://www.ICCF.nl         ///




More information about the pkg-vim-maintainers mailing list