From e24a14118c29d910d3be59203332768b5fbd93e8 Mon Sep 17 00:00:00 2001 From: Evan Miller Date: Sun, 21 Aug 2022 17:24:00 +0100 Subject: [PATCH] patch 9.0.0237: Mac: cannot build if dispatch.h is not available Problem: Mac: cannot build if dispatch.h is not available. Solution: Add #ifdef. (Evan Miller, closes #10954) --- src/os_macosx.m | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/os_macosx.m b/src/os_macosx.m index acc5b0794d..f666b71644 100644 --- a/src/os_macosx.m +++ b/src/os_macosx.m @@ -28,7 +28,9 @@ #include #include +#ifdef FEAT_RELTIME #include +#endif #include "vim.h" #import diff --git a/src/version.c b/src/version.c index c12d3c9060..3788596440 100644 --- a/src/version.c +++ b/src/version.c @@ -731,6 +731,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 237, /**/ 236, /**/