Created
November 2, 2013 20:40
-
-
Save felixbuenemann/7283250 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** vim/src/os_unix.c Thu Oct 24 11:50:44 2013 | |
--- vim-local/src/os_unix.c Thu Oct 24 13:25:03 2013 | |
*************** | |
*** 804,809 **** | |
--- 804,815 ---- | |
* completely full. | |
*/ | |
+ #if defined(__APPLE__) && \ | |
+ 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Patch by Kazunobu Kuriyama sent to vim_dev with subject "[patch] src/os_unix.c (for build on Mac OS X 10.9 Mavericks)".