0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 9.0.0658: tiny build fails on Mac OS

Problem:    Tiny build fails on Mac OS.
Solution:   Define FEAT_CLIPBOARD only for normal build.
This commit is contained in:
Bram Moolenaar
2022-10-04 16:50:21 +01:00
parent 7904fa420e
commit 351523f893
2 changed files with 4 additions and 1 deletions

View File

@@ -163,7 +163,8 @@
*/
#include "feature.h"
#if defined(MACOS_X_DARWIN) && !defined(FEAT_CLIPBOARD)
#if defined(MACOS_X_DARWIN) && defined(FEAT_NORMAL) \
&& !defined(FEAT_CLIPBOARD)
# define FEAT_CLIPBOARD
#endif