# HG changeset patch # User Bram Moolenaar # Date 1661099402 -7200 # Node ID 3f88a6d02354f082f66565078c454df7b2f69579 # Parent b420af3bd70f520394a801ad95a33bb4ebcf84b9 patch 9.0.0237: Mac: cannot build if dispatch.h is not available Commit: https://github.com/vim/vim/commit/e24a14118c29d910d3be59203332768b5fbd93e8 Author: Evan Miller Date: Sun Aug 21 17:24:00 2022 +0100 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 https://github.com/vim/vim/issues/10954) diff --git a/src/os_macosx.m b/src/os_macosx.m --- 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 --- a/src/version.c +++ b/src/version.c @@ -732,6 +732,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 237, +/**/ 236, /**/ 235,