1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-25 20:50:31 +02:00

Update for changes to Whippet build

* libguile/Makefile.am (WHIPPET_EMBEDDER_H): Define this variable
instead of using -include; otherwise we don't get the chance to set
_LARGEFILE64_SOURCE before including Whippet files.
(AM_CPPFLAGS): Simplify.
(libguile_@GUILE_EFFECTIVE_VERSION@_la_DEPENDENCIES): Explicitly add
libwhippet.la as a dependency.
(noinst_HEADERS): Add gc-internal.h
* libguile/gc-internal.h: New file.
* libguile/gc.c: Include gc-internal.h.
This commit is contained in:
Andy Wingo 2025-04-16 13:48:36 +02:00
parent fd7b5d2d0c
commit 2d5d9f6ba9
3 changed files with 35 additions and 4 deletions

View file

@ -1,4 +1,4 @@
/* Copyright 1995-2003,2006,2008-2014,2016-2018,2020,2024
/* Copyright 1995-2003,2006,2008-2014,2016-2018,2020,2024-2025
Free Software Foundation, Inc.
This file is part of Guile.
@ -59,6 +59,8 @@
#endif
#include "gc.h"
#include "gc-internal.h"
/* For GC_set_start_callback. */
#include <gc/gc_mark.h>