0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

updated for version 7.4.056

Problem:    Mac: Compilation problem with OS X 10.9 Mavericks.
Solution:   Include AvailabilityMacros.h when available. (Kazunobu Kuriyama)
This commit is contained in:
Bram Moolenaar 2013-11-02 21:49:32 +01:00
parent 2b1b53f5d9
commit 4cc95d1495
2 changed files with 8 additions and 0 deletions

View File

@ -804,6 +804,12 @@ mch_stackcheck(p)
* completely full.
*/
#if defined(HAVE_AVAILABILITYMACROS_H) \
&& defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) \
&& (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 1090)
# include <AvailabilityMacros.h>
#endif
#ifndef SIGSTKSZ
# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
#endif

View File

@ -738,6 +738,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
56,
/**/
55,
/**/