diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-29 15:40:04 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-29 15:40:04 +0200 |
commit | 39efa89afb10ec967bea92f02aa58c4109628e5f (patch) | |
tree | 92a941cd0a1504ec4eefc1a07840c4b1eb9d7e46 /src/os_win32.h | |
parent | 27515921196e61034c18718812b6417f65d0337f (diff) | |
download | vim-git-39efa89afb10ec967bea92f02aa58c4109628e5f.tar.gz |
updated for version 7.3.1268v7.3.1268
Problem: ACL support doesn't work when when compiled with MingW.
Solution: Support ACL on MingW. (Ken Takata)
Diffstat (limited to 'src/os_win32.h')
-rw-r--r-- | src/os_win32.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/os_win32.h b/src/os_win32.h index ce6f6d493..42cbab595 100644 --- a/src/os_win32.h +++ b/src/os_win32.h @@ -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 |