]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.1007 v7.3.1007
authorBram Moolenaar <Bram@vim.org>
Thu, 23 May 2013 20:27:03 +0000 (22:27 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 23 May 2013 20:27:03 +0000 (22:27 +0200)
Problem:    Can't build on Minix 3.2.1.
Solution:   Add a condition to an #ifdef. (Gautam Tirumala)

src/memfile.c
src/version.c

index 58f4485762ba1e42ad4d2489a44c8b42ee2f1fe2..2826aeabcecb049646777bb32dcab2b82a3381ca 100644 (file)
@@ -127,7 +127,7 @@ mf_open(fname, flags)
 {
     memfile_T          *mfp;
     off_t              size;
-#if defined(STATFS) && defined(UNIX) && !defined(__QNX__)
+#if defined(STATFS) && defined(UNIX) && !defined(__QNX__) && !defined(__minix)
 # define USE_FSTATFS
     struct STATFS      stf;
 #endif
index b8835be3b77f28037d523271cfc8476bdd0b915d..bee106ca42e6f75e690d139ea1f3fc1dbacc23a5 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1007,
 /**/
     1006,
 /**/