From d382b23ee73dd993e944bd4fad9d190bc2e6f849 Mon Sep 17 00:00:00 2001 From: Matthias Benkard Date: Sun, 27 Jan 2008 12:46:11 +0100 Subject: Do not build our own libffi if we can find one installed on the system. darcs-hash:98186d9dca2682cb70a25403ee7415dcbd28249c --- Objective-C/libobjcl.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'Objective-C/libobjcl.h') diff --git a/Objective-C/libobjcl.h b/Objective-C/libobjcl.h index 8c557a2..e5a70f1 100644 --- a/Objective-C/libobjcl.h +++ b/Objective-C/libobjcl.h @@ -20,10 +20,18 @@ #import "Foundation/Foundation.h" #include +#include "../config.h" + #ifdef USE_LIBFFI +#ifdef HAVE_FFI_H +#include +#elif HAVE_FFI_FFI_H +#include +#else +/* We are using our own build of libffi. */ #include #endif - +#endif extern NSException *objcl_oom_exception; -- cgit v1.2.3