# HG changeset patch # User Bram Moolenaar # Date 1677600004 -3600 # Node ID 1b2d6aa29267df199053c2169c40e4786c9e12d6 # Parent c9b92f64ce24dc20bfb44ef783cb30c29b6471c3 patch 9.0.1364: build error with older Mac OS Commit: https://github.com/vim/vim/commit/da77693b17ff1f17f03ac78f0298294cf7d1087f Author: Yee Cheng Chin Date: Tue Feb 28 15:51:23 2023 +0000 patch 9.0.1364: build error with older Mac OS Problem: Build error with older Mac OS. Solution: Adjust #ifdef. (Yee Cheng Chin, closes https://github.com/vim/vim/issues/12074) diff --git a/src/os_mac.h b/src/os_mac.h --- a/src/os_mac.h +++ b/src/os_mac.h @@ -272,7 +272,8 @@ # include -# ifndef MAC_OS_X_VERSION_10_12 +# if !defined(MAC_OS_X_VERSION_10_12) \ + || (MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_12) typedef int clockid_t; # endif # ifndef CLOCK_REALTIME diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1364, +/**/ 1363, /**/ 1362,