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/coop-threads.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/coop-threads.c')
-rw-r--r-- | libguile/coop-threads.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libguile/coop-threads.c b/libguile/coop-threads.c index 86194bd70..c2f5696ed 100644 --- a/libguile/coop-threads.c +++ b/libguile/coop-threads.c @@ -44,17 +44,17 @@ -#include "validate.h" -#include "coop-threads.h" -#include "root.h" -#include "strings.h" +#include "libguile/validate.h" +#include "libguile/coop-threads.h" +#include "libguile/root.h" +#include "libguile/strings.h" /* A counter of the current number of threads */ size_t scm_thread_count = 0; /* This is included rather than compiled separately in order to simplify the configuration mechanism. */ -#include "coop.c" +#include "libguile/coop.c" /* A count-down counter used to determine when to switch contexts */ |