summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2020-01-06 21:19:55 -0800
committerKaz Kylheku <kaz@kylheku.com>2020-01-06 21:19:55 -0800
commitb53b9fba153f5f704eb9b7a67cd59ad3e3be35ae (patch)
tree3a62cdac04fc571e62171e41e8b8876da13c542d
parenta2182d79eac73edfab614b6c1b3881938c46e058 (diff)
downloadtxr-b53b9fba153f5f704eb9b7a67cd59ad3e3be35ae.tar.gz
txr-b53b9fba153f5f704eb9b7a67cd59ad3e3be35ae.tar.bz2
txr-b53b9fba153f5f704eb9b7a67cd59ad3e3be35ae.zip
ffi: fix non-libffi build on big endian.
This is cribbed from a patch by q66 <daniel@oct***rge.org>, 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.
-rw-r--r--ffi.c1
1 files changed, 1 insertions, 0 deletions
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 {