Patch 9.0.1364
Problem: Build error with older Mac OS.
Solution: Adjust #ifdef. (Yee Cheng Chin, closes #12074)
Files: src/os_mac.h
*** ../vim-9.0.1363/src/os_mac.h 2022-06-09 14:45:43.000000000 +0100
--- src/os_mac.h 2023-02-28 15:50:48.006829613 +0000
***************
*** 272,278 ****
# include <dispatch/dispatch.h>
! # ifndef MAC_OS_X_VERSION_10_12
typedef int clockid_t;
# endif
# ifndef CLOCK_REALTIME
--- 272,279 ----
# include <dispatch/dispatch.h>
! # 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
*** ../vim-9.0.1363/src/version.c 2023-02-27 22:06:48.276971827 +0000
--- src/version.c 2023-02-28 15:51:07.958849159 +0000
***************
*** 697,698 ****
--- 697,700 ----
{ /* Add new patch number below this line */
+ /**/
+ 1364,
/**/
--
Some of the well known MS-Windows errors:
EMEMORY Memory error caused by..., eh...
ELICENSE Your license has expired, give us more money!
EMOUSE Mouse moved, reinstall Windows
EILLEGAL Illegal error, you are not allowed to see this
EVIRUS Undetectable virus found
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20230228155200.2642E1C0EB4%40moolenaar.net.