From ddab9365a9bbcbd98bd87924bf06264538eb50e7 Mon Sep 17 00:00:00 2001 From: japhie Date: Thu, 13 Oct 2005 11:07:45 +0000 Subject: [PATCH] - #ifdef out symbols related to dynamic FFI (build on non-x86 platforms failed) --- src/c/symbols_list.h | 2 ++ src/c/symbols_list2.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/c/symbols_list.h b/src/c/symbols_list.h index 2c7810f46..56080722d 100644 --- a/src/c/symbols_list.h +++ b/src/c/symbols_list.h @@ -1552,8 +1552,10 @@ cl_symbols[] = { {SYS_ "*CODE-WALKER*", SI_SPECIAL, NULL, -1, OBJNULL}, +#ifdef ECL_DYNAMIC_FFI {SYS_ "CALL-CFUN", SI_ORDINARY, si_call_cfun, 4, OBJNULL}, {KEY_ "CALLBACK", KEYWORD, NULL, -1, OBJNULL}, +#endif /* ECL_DYNAMIC_FFI */ /* Tag for end of list */ {NULL, CL_ORDINARY, NULL, -1, OBJNULL}}; diff --git a/src/c/symbols_list2.h b/src/c/symbols_list2.h index d6946aa19..6961a582e 100644 --- a/src/c/symbols_list2.h +++ b/src/c/symbols_list2.h @@ -1552,8 +1552,10 @@ cl_symbols[] = { {SYS_ "*CODE-WALKER*",NULL}, +#ifdef ECL_DYNAMIC_FFI {SYS_ "CALL-CFUN","si_call_cfun"}, {KEY_ "CALLBACK",NULL}, +#endif /* ECL_DYNAMIC_FFI */ /* Tag for end of list */ {NULL,NULL}};