From 2744422ac64ed24020fe900d7ea4ff8b44637886 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 26 Mar 2024 01:56:46 +0100 Subject: [PATCH] jit/cache: Fix a compilation error on Solaris 11.4/SPARC. * lib/jit/cache.h: On Solaris, include . --- ChangeLog | 5 +++++ lib/jit/cache.h | 3 +++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 5f1eec3d12..014eba25df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-03-25 Bruno Haible + + jit/cache: Fix a compilation error on Solaris 11.4/SPARC. + * lib/jit/cache.h: On Solaris, include . + 2024-03-10 Collin Funk gnulib-tool: Don't remove comments referencing @NMD@, part 2. diff --git a/lib/jit/cache.h b/lib/jit/cache.h index f9da28125e..db00627ee3 100644 --- a/lib/jit/cache.h +++ b/lib/jit/cache.h @@ -34,6 +34,9 @@ #if defined __sgi # include #endif +#if defined __sun +# include +#endif /* Clears the instruction cache for addresses start <= address < end. -- 2.39.5