diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-04-21 14:16:44 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-04-21 14:16:44 +0000 |
commit | a0599745350ad81ec4133991049cb0dba3a9c2cd (patch) | |
tree | 082a61bee36c7952266ebec608affcbbd65f1d1d /libguile/root.c | |
parent | e415cb066601d757beb588675baa0b268926a54e (diff) | |
download | guile-a0599745350ad81ec4133991049cb0dba3a9c2cd.tar.gz |
* Makefile.am (DEFS): Added. automake adds -I options to DEFS,
and we don't want that.
(INCLUDES): Removed all -I options except for the root source
directory and the root build directory.
* *.*: Change includes so that they always use the "prefixes"
libguile/, qt/, guile-readline/, or libltdl/.
(Thanks to Tim Mooney.)
Diffstat (limited to 'libguile/root.c')
-rw-r--r-- | libguile/root.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libguile/root.c b/libguile/root.c index 9330b24b0..bc62c0013 100644 --- a/libguile/root.c +++ b/libguile/root.c @@ -45,17 +45,17 @@ #include <stdio.h> -#include "_scm.h" -#include "stackchk.h" -#include "dynwind.h" -#include "eval.h" -#include "smob.h" -#include "pairs.h" -#include "throw.h" -#include "fluids.h" -#include "ports.h" - -#include "root.h" +#include "libguile/_scm.h" +#include "libguile/stackchk.h" +#include "libguile/dynwind.h" +#include "libguile/eval.h" +#include "libguile/smob.h" +#include "libguile/pairs.h" +#include "libguile/throw.h" +#include "libguile/fluids.h" +#include "libguile/ports.h" + +#include "libguile/root.h" /* Define this if you want to try out the stack allocation of cwdr's @@ -444,7 +444,7 @@ scm_init_root () scm_tc16_root = scm_make_smob_type_mfpe ("root", sizeof (struct scm_root_state), mark_root, NULL, print_root, NULL); -#include "root.x" +#include "libguile/root.x" } /* |