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/chars.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/chars.c')
-rw-r--r-- | libguile/chars.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/chars.c b/libguile/chars.c index a7d8d195a..0ab7c6540 100644 --- a/libguile/chars.c +++ b/libguile/chars.c @@ -46,10 +46,10 @@ #include <stdio.h> #include <ctype.h> -#include "_scm.h" -#include "validate.h" +#include "libguile/_scm.h" +#include "libguile/validate.h" -#include "chars.h" +#include "libguile/chars.h" SCM_DEFINE (scm_char_p, "char?", 1, 0, 0, @@ -397,7 +397,7 @@ int scm_n_charnames = sizeof (scm_charnames) / sizeof (char *); void scm_init_chars () { -#include "chars.x" +#include "libguile/chars.x" } |