From b53b9fba153f5f704eb9b7a67cd59ad3e3be35ae Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 6 Jan 2020 21:19:55 -0800 Subject: ffi: fix non-libffi build on big endian. This is cribbed from a patch by q66 , commited recently to the Void Linux distro. * ffi.c (ffi_arg): Define this type when HAVE_FFI is not enabled. Some big-endian-specific code refers to it. --- ffi.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ffi.c') diff --git a/ffi.c b/ffi.c index 972b54e8..c3f83f26 100644 --- a/ffi.c +++ b/ffi.c @@ -84,6 +84,7 @@ typedef struct ffi_type { char type, size; } ffi_type; #define FFI_TYPE_STRUCT 0 +typedef unsigned long ffi_arg; #endif typedef enum { -- cgit v1.2.3