1.0.21.6: muffle compiler notes from EVAL and function generator construction
[sbcl.git] / src / runtime / darwin-os.h
index b93fa2b..2a7a405 100644 (file)
@@ -5,6 +5,7 @@
 
 #include <mach/mach_init.h>
 #include <mach/task.h>
+#include <AvailabilityMacros.h>
 
 /* man pages claim that the third argument is a sigcontext struct,
    but ucontext_t is defined, matches sigcontext where sensible,
 #if defined(LISP_FEATURE_X86)
 #include <sys/ucontext.h>
 #include <sys/_types.h>
+#ifdef MAC_OS_X_VERSION_10_5
+typedef struct __darwin_ucontext os_context_t;
+#else
 typedef struct ucontext os_context_t;
+#endif
+
 
 #else
 #include <ucontext.h>