From 9665ec0d4a2bf9623a22aa4b7b31e18061d6efc2 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 39d8dd5d60..73379f0c1b 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-25 Bruno Haible gnulib-tool.py: Print "executing mkdir ..." messages. 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