changeset 30647:22de625d0cd8 v9.0.0658

patch 9.0.0658: tiny build fails on Mac OS Commit: https://github.com/vim/vim/commit/351523f8938bcc77b68a55010338401436af8ec8 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 4 16:50:21 2022 +0100 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.
author Bram Moolenaar <Bram@vim.org>
date Tue, 04 Oct 2022 18:00:05 +0200
parents aae258d38688
children 3eba699aba26
files src/version.c src/vim.h
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    658,
+/**/
     657,
 /**/
     656,
--- 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