Skip to content

Instantly share code, notes, and snippets.

@felixbuenemann
Created November 2, 2013 20:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felixbuenemann/7283250 to your computer and use it in GitHub Desktop.
Save felixbuenemann/7283250 to your computer and use it in GitHub Desktop.
*** 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
@felixbuenemann
Copy link
Author

Patch by Kazunobu Kuriyama sent to vim_dev with subject "[patch] src/os_unix.c (for build on Mac OS X 10.9 Mavericks)".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment