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/strop.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/strop.c')
-rw-r--r-- | libguile/strop.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libguile/strop.c b/libguile/strop.c index 630ecbbca..15d0b4ed9 100644 --- a/libguile/strop.c +++ b/libguile/strop.c @@ -24,13 +24,13 @@ Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA #include <stdio.h> -#include "_scm.h" -#include "chars.h" -#include "strings.h" +#include "libguile/_scm.h" +#include "libguile/chars.h" +#include "libguile/strings.h" -#include "validate.h" -#include "strop.h" -#include "read.h" /*For SCM_CASE_INSENSITIVE_P*/ +#include "libguile/validate.h" +#include "libguile/strop.h" +#include "libguile/read.h" /*For SCM_CASE_INSENSITIVE_P*/ #ifdef HAVE_STRING_H #include <string.h> @@ -492,7 +492,7 @@ SCM_DEFINE (scm_string_ci_to_symbol, "string-ci->symbol", 1, 0, 0, void scm_init_strop () { -#include "strop.x" +#include "libguile/strop.x" } /* |