From 04cd67f5ab3b5f1fed69715b87a2d3c98fb0d308 Mon Sep 17 00:00:00 2001 From: John Paul Adrian Glaubitz Date: Sat, 4 Nov 2017 21:12:41 +0100 Subject: [PATCH] jemalloc: Add missing definition of LG_QUANTUM for m68k (#8782) --- shlr/heap/include/r_jemalloc/internal/jemalloc_internal.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shlr/heap/include/r_jemalloc/internal/jemalloc_internal.h b/shlr/heap/include/r_jemalloc/internal/jemalloc_internal.h index e3b601bb31..461289d044 100644 --- a/shlr/heap/include/r_jemalloc/internal/jemalloc_internal.h +++ b/shlr/heap/include/r_jemalloc/internal/jemalloc_internal.h @@ -256,6 +256,9 @@ typedef unsigned szind_t; # ifdef __hppa__ # define LG_QUANTUM 4 # endif +# ifdef __m68k__ +# define LG_QUANTUM 3 +# endif # ifdef __mips__ # define LG_QUANTUM 3 # endif