summaryrefslogtreecommitdiff
path: root/libguile/async.c
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>2000-04-21 14:16:44 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>2000-04-21 14:16:44 +0000
commita0599745350ad81ec4133991049cb0dba3a9c2cd (patch)
tree082a61bee36c7952266ebec608affcbbd65f1d1d /libguile/async.c
parente415cb066601d757beb588675baa0b268926a54e (diff)
downloadguile-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/async.c')
-rw-r--r--libguile/async.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libguile/async.c b/libguile/async.c
index 718a9a126..906a22acd 100644
--- a/libguile/async.c
+++ b/libguile/async.c
@@ -46,14 +46,14 @@
#include <stdio.h>
#include <signal.h>
-#include "_scm.h"
-#include "eval.h"
-#include "throw.h"
-#include "root.h"
-#include "smob.h"
+#include "libguile/_scm.h"
+#include "libguile/eval.h"
+#include "libguile/throw.h"
+#include "libguile/root.h"
+#include "libguile/smob.h"
-#include "validate.h"
-#include "async.h"
+#include "libguile/validate.h"
+#include "libguile/async.h"
#ifdef HAVE_STRING_H
#include <string.h>
@@ -498,7 +498,7 @@ scm_init_async ()
a_thunk = scm_make_gsubr ("%gc-thunk", 0, 0, 0, scm_sys_gc_async_thunk);
scm_gc_async = scm_system_async (a_thunk);
-#include "async.x"
+#include "libguile/async.x"
}
/*