diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-14 22:16:01 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-14 22:20:47 +0200 |
commit | 83584ef23105be514c474ca0a1f107d681888d5d (patch) | |
tree | 52b924cabc24d4216123c40baa2ccd26f4ad089d /libguile/modules.c | |
parent | ceaf782770b597f4eb31a4fca65a75ab220aa47c (diff) | |
download | guile-83584ef23105be514c474ca0a1f107d681888d5d.tar.gz |
Fix libguile subcomponent headers not to include <libguile.h>
* libguile/bytevectors.h: Include uniform.h, for use in the macros.
* libguile/extensions.h: Include libpath.h, for the
SCM_EFFECTIVE_VERSION, which is almost always used with these
routines.
* libguile/frames.h:
* libguile/instructions.h:
* libguile/intrinsics.h:
* libguile/loader.h:
* libguile/programs.h:
* libguile/vm.h: Include <libguile/__scm.h> instead of <libguile.h>.
Cuts a circular include, but also precipitates a lot of maintenance in
the .c files.
* libguile/*.c: Update C files to add needed all needed includes that
before were getting automatically pulled in by the indirect inclusion
of libguile.h.
Diffstat (limited to 'libguile/modules.c')
-rw-r--r-- | libguile/modules.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/modules.c b/libguile/modules.c index b5fdbf6ef..9589e9af4 100644 --- a/libguile/modules.c +++ b/libguile/modules.c @@ -30,6 +30,7 @@ #include "libguile/smob.h" #include "libguile/procprop.h" #include "libguile/vectors.h" +#include "libguile/keywords.h" #include "libguile/hashtab.h" #include "libguile/struct.h" #include "libguile/variable.h" |