From 2f392d6be921528e3768171a796c8104c83cad2c Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 23 Sep 2025 13:54:28 +0200 Subject: [PATCH] kernel: include julia_gc.h in gap_all.h ... at least when using the Julia garbage collector. This will make it easier for the GAP.jl resp. JuliaInterface packages to interface to the GAP kernel in light of recent changes to our header include path. --- src/gap_all.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gap_all.h b/src/gap_all.h index 1c69e2810a..6d6a1e6d61 100644 --- a/src/gap_all.h +++ b/src/gap_all.h @@ -88,6 +88,10 @@ extern "C" { #include "hpc/traverse.h" #endif +#ifdef USE_JULIA_GC +#include "julia_gc.h" +#endif + #ifdef __cplusplus } // extern "C" #endif