diff src/os_unix.c @ 5421:739074bdceb8 v7.4.061

updated for version 7.4.061 Problem: Availability macros configure check in wrong place. Solution: Also check when not using Darwin. Remove version check.
author Bram Moolenaar <bram@vim.org>
date Sun, 03 Nov 2013 00:41:00 +0100
parents 8d83c219fc7b
children e35c69ad4823
line wrap: on
line diff
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -804,9 +804,7 @@ 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)
+#if defined(HAVE_AVAILABILITYMACROS_H)
 # include <AvailabilityMacros.h>
 #endif