From f961fda4e87e79aacc6c61172303106d3e9522de Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Sun, 25 Mar 2012 07:41:21 +0100 Subject: [PATCH] Fix build on PPC/Darwin --- src/runtime/darwin-os.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/runtime/darwin-os.c b/src/runtime/darwin-os.c index 568bbc7..fbbae26 100644 --- a/src/runtime/darwin-os.c +++ b/src/runtime/darwin-os.c @@ -164,13 +164,15 @@ mach_fork() { return pid; } } +#endif void darwin_init(void) { +#ifdef LISP_FEATURE_MACH_EXCEPTION_HANDLER setup_mach_exception_handling_thread(); +#endif } -#endif #ifdef LISP_FEATURE_SB_THREAD -- 1.7.10.4