diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-12-21 11:48:51 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-12-21 11:48:51 +0100 |
commit | 9d302ad4e31b4e20ce0b3af700f43edb6f5e6036 (patch) | |
tree | bf98d94b2534ef89d8287a9f18a13110937a1e22 /src/feature.h | |
parent | a79fd56923744e331b3a5badbf9186100818fb45 (diff) | |
download | vim-git-9d302ad4e31b4e20ce0b3af700f43edb6f5e6036.tar.gz |
patch 8.1.0612: cannot use two global runtime dirs with configurev8.1.0612
Problem: Cannot use two global runtime dirs with configure.
Solution: Support a comma in --with-global-runtime. (James McCoy,
closes #3704)
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/feature.h b/src/feature.h index 9615a9fa4..5c03e2bf6 100644 --- a/src/feature.h +++ b/src/feature.h @@ -973,7 +973,8 @@ #endif /* - * RUNTIME_GLOBAL Directory name for global Vim runtime directory. + * RUNTIME_GLOBAL Comma-separated list of directory names for global Vim + * runtime directories. * Don't define this if the preprocessor can't handle * string concatenation. * Also set by "--with-global-runtime" configure argument. @@ -981,6 +982,15 @@ /* #define RUNTIME_GLOBAL "/etc/vim" */ /* + * RUNTIME_GLOBAL_AFTER Comma-separated list of directory names for global Vim + * runtime after directories. + * Don't define this if the preprocessor can't handle + * string concatenation. + * Also set by "--with-global-runtime" configure argument. + */ +/* #define RUNTIME_GLOBAL_AFTER "/etc/vim/after" */ + +/* * MODIFIED_BY Name of who modified Vim. Required when distributing * a modified version of Vim. * Also from the "--with-modified-by" configure argument. |