From: Bram Moolenaar Date: Tue, 4 Oct 2022 15:50:21 +0000 (+0100) Subject: patch 9.0.0658: tiny build fails on Mac OS X-Git-Tag: v9.0.0658 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=351523f8938bcc77b68a55010338401436af8ec8;p=vim 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. --- diff --git a/src/version.c b/src/version.c index 884d3a5fe..caaf96863 100644 --- a/src/version.c +++ b/src/version.c @@ -699,6 +699,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 658, /**/ 657, /**/ diff --git a/src/vim.h b/src/vim.h index 17cc7b803..4a77decc8 100644 --- a/src/vim.h +++ b/src/vim.h @@ -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