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/regex-posix.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/regex-posix.c')
-rw-r--r-- | libguile/regex-posix.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/libguile/regex-posix.c b/libguile/regex-posix.c index 2a1678be4..9e4ce3ae8 100644 --- a/libguile/regex-posix.c +++ b/libguile/regex-posix.c @@ -56,7 +56,7 @@ #include <stdio.h> #include <sys/types.h> -#include "_scm.h" +#include "libguile/_scm.h" /* Supposedly, this file is never compiled unless we know we have POSIX regular expressions. But we still put this in an #ifdef so @@ -76,16 +76,16 @@ #endif #endif -#include "smob.h" -#include "symbols.h" -#include "vectors.h" -#include "strports.h" -#include "ports.h" -#include "feature.h" -#include "strings.h" +#include "libguile/smob.h" +#include "libguile/symbols.h" +#include "libguile/vectors.h" +#include "libguile/strports.h" +#include "libguile/ports.h" +#include "libguile/feature.h" +#include "libguile/strings.h" -#include "validate.h" -#include "regex-posix.h" +#include "libguile/validate.h" +#include "libguile/regex-posix.h" /* This is defined by some regex libraries and omitted by others. */ #ifndef REG_BASIC @@ -292,7 +292,7 @@ scm_init_regex_posix () scm_sysintern ("regexp/notbol", scm_long2num (REG_NOTBOL)); scm_sysintern ("regexp/noteol", scm_long2num (REG_NOTEOL)); -#include "regex-posix.x" +#include "libguile/regex-posix.x" scm_add_feature ("regex"); } |