wingo pushed a commit to branch wip-whippet in repository guile. commit a9ba085ad04f61be76535180214e54574e6eca48 Author: Andy Wingo <wi...@igalia.com> AuthorDate: Wed Apr 16 12:43:15 2025 +0200
Add missing file --- embed.am | 1 + src/embedder-api-impl.h | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/embed.am b/embed.am index 8accee812..10e30eb10 100644 --- a/embed.am +++ b/embed.am @@ -80,6 +80,7 @@ libwhippet_la_SOURCES = \ %D%/src/background-thread.h \ %D%/src/copy-space.h \ %D%/src/debug.h \ + %D%/src/embedder-api-impl.h \ %D%/src/extents.h \ %D%/src/field-set.h \ %D%/src/freelist.h \ diff --git a/src/embedder-api-impl.h b/src/embedder-api-impl.h new file mode 100644 index 000000000..26ef61eaa --- /dev/null +++ b/src/embedder-api-impl.h @@ -0,0 +1,12 @@ +#ifndef EMBEDDER_API_IMPL_H +#define EMBEDDER_API_IMPL_H + +#include "gc-embedder-api.h" + +#ifndef GC_EMBEDDER +#define GC_EMBEDDER "whippet-embedder.h" +#endif + +#include GC_EMBEDDER + +#endif // EMBEDDER_API_IMPL_H