summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-03-15 07:50:09 -0700
committerKaz Kylheku <kaz@kylheku.com>2022-03-15 07:50:09 -0700
commitc80dc667dbcfa47b8a01c7f1ae0da43d4158086b (patch)
treeefb2ada5789c3ba157b44071463bebdb3ebed394 /configure
parente0f19f2e697665b63a6a665e373d23ebf63eb925 (diff)
downloadtxr-c80dc667dbcfa47b8a01c7f1ae0da43d4158086b.tar.gz
txr-c80dc667dbcfa47b8a01c7f1ae0da43d4158086b.tar.bz2
txr-c80dc667dbcfa47b8a01c7f1ae0da43d4158086b.zip
ffi: support intmax-t and uintmax-t types.
* configure: detect intmax_t and place HAVE_INTMAX_T into config.h. * ffi.c (ffi_init_extra_types): register intmax-t and uintmax-t types. If HAVE_INTMAX_T is missing, then make them aliases for longlong and ulonglong. * txr.1: Documented. * stdlib/doc-syms.tl: Updated.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure19
1 files changed, 19 insertions, 0 deletions
diff --git a/configure b/configure
index 6197950a..4846072e 100755
--- a/configure
+++ b/configure
@@ -1571,6 +1571,25 @@ then
printf "typedef superulong_t double_uintptr_t;\n" >> config.h
fi
+printf "Checking for intmax_t ... "
+cat > conftest.c <<!
+#include <inttypes.h>
+
+int main(void)
+{
+ intmax_t i = 0;
+ untmax_t u = 0;
+ return (uintmax_t) i + u;
+}
+!
+
+if conftest ; then
+ printf "yes\n"
+ printf "#define HAVE_INTMAX_T 1\n" >> config.h
+else
+ printf "no\n"
+fi
+
#
# Endianness.
#