diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-23 22:27:03 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-23 22:27:03 +0200 |
commit | a03dbed9e962f350c8bc4d53446e5f193b367435 (patch) | |
tree | 23bb5f081c87ef6cb1824a8b78cc7def35c2b9e2 /src | |
parent | 307d10a2fb15879cf34f7ecfdcaca551991014a8 (diff) | |
download | vim-git-a03dbed9e962f350c8bc4d53446e5f193b367435.tar.gz |
updated for version 7.3.1007v7.3.1007
Problem: Can't build on Minix 3.2.1.
Solution: Add a condition to an #ifdef. (Gautam Tirumala)
Diffstat (limited to 'src')
-rw-r--r-- | src/memfile.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/memfile.c b/src/memfile.c index 58f448576..2826aeabc 100644 --- a/src/memfile.c +++ b/src/memfile.c @@ -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 diff --git a/src/version.c b/src/version.c index b8835be3b..bee106ca4 100644 --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1007, +/**/ 1006, /**/ 1005, |