diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-05-07 18:37:03 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-05-07 18:37:03 +0200 |
commit | b2d0e51366dea6843f991f31a457f5456d162678 (patch) | |
tree | c220d988cb585427bf0e4eae0fc648ec3d0524d5 /src/config.h.in | |
parent | 4a070cc82e00618db279526797564cb2b4e9b060 (diff) | |
download | vim-git-b2d0e51366dea6843f991f31a457f5456d162678.tar.gz |
patch 8.2.0711: temp directory might be clearedv8.2.0711
Problem: With a long running Vim the temp directory might be cleared on
some systems.
Solution: Lock the temp directory. (closes #6044)
Diffstat (limited to 'src/config.h.in')
-rw-r--r-- | src/config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/config.h.in b/src/config.h.in index de53ffb03..5c8c7e556 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -484,5 +484,11 @@ /* Define if we have isnan() */ #undef HAVE_ISNAN +/* Define if we have dirfd() */ +#undef HAVE_DIRFD + +/* Define if we have flock() */ +#undef HAVE_FLOCK + /* Define to inline symbol or empty */ #undef inline |