1
0
forked from aniani/vim

updated for version 7.3.1268

Problem:    ACL support doesn't work when when compiled with MingW.
Solution:   Support ACL on MingW. (Ken Takata)
This commit is contained in:
Bram Moolenaar
2013-06-29 15:40:04 +02:00
parent 2751592119
commit 39efa89afb
3 changed files with 8 additions and 9 deletions

View File

@@ -57,14 +57,11 @@
#define FEAT_SHORTCUT /* resolve shortcuts */
#if !defined(__MINGW32__) \
&& !defined(__CYGWIN__) \
&& (!defined(__BORLANDC__) || __BORLANDC__ >= 0x550) \
#if (!defined(__BORLANDC__) || __BORLANDC__ >= 0x550) \
&& (!defined(_MSC_VER) || _MSC_VER > 1020)
/*
* Access Control List (actually security info).
* Mingw and Cygwin don't have the acl stuff.
* Borland only in version 5.5 and later.
* Borland has the acl stuff only in version 5.5 and later.
* MSVC in 5.0, not in 4.2, don't know about 4.3.
*/
# define HAVE_ACL