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/dynl.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/dynl.c')
-rw-r--r-- | libguile/dynl.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libguile/dynl.c b/libguile/dynl.c index ffda7debc..701fa4d3a 100644 --- a/libguile/dynl.c +++ b/libguile/dynl.c @@ -65,14 +65,14 @@ maybe_drag_in_eprintf () #endif #include <stdio.h> -#include "_scm.h" -#include "dynl.h" -#include "smob.h" -#include "keywords.h" -#include "ports.h" -#include "strings.h" +#include "libguile/_scm.h" +#include "libguile/dynl.h" +#include "libguile/smob.h" +#include "libguile/keywords.h" +#include "libguile/ports.h" +#include "libguile/strings.h" -#include "validate.h" +#include "libguile/validate.h" /* Converting a list of SCM strings into a argv-style array. You must have ints disabled for the whole lifetime of the created argv (from @@ -558,7 +558,7 @@ scm_init_dynamic_linking () scm_set_smob_mark (scm_tc16_dynamic_obj, mark_dynl_obj); scm_set_smob_print (scm_tc16_dynamic_obj, print_dynl_obj); sysdep_dynl_init (); -#include "dynl.x" +#include "libguile/dynl.x" kw_global = scm_make_keyword_from_dash_symbol (sym_global); } |