From: Evan Miller Date: Sun, 21 Aug 2022 16:24:00 +0000 (+0100) Subject: patch 9.0.0237: Mac: cannot build if dispatch.h is not available X-Git-Tag: v9.0.0237 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e24a14118c29d910d3be59203332768b5fbd93e8;p=thirdparty%2Fvim.git 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) --- 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, /**/