1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

* 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.)
This commit is contained in:
Mikael Djurfeldt 2000-04-21 14:16:44 +00:00
parent e415cb0666
commit a059974535
100 changed files with 823 additions and 785 deletions

View file

@ -46,13 +46,13 @@
#include <stdio.h>
#include "_scm.h"
#include "pairs.h"
#include "strings.h"
#include "throw.h"
#include "libguile/_scm.h"
#include "libguile/pairs.h"
#include "libguile/strings.h"
#include "libguile/throw.h"
#include "validate.h"
#include "error.h"
#include "libguile/validate.h"
#include "libguile/error.h"
#ifdef HAVE_STRING_H
#include <string.h>
@ -325,8 +325,8 @@ scm_wta (SCM arg, const char *pos, const char *s_subr)
void
scm_init_error ()
{
#include "cpp_err_symbols.c"
#include "error.x"
#include "libguile/cpp_err_symbols.c"
#include "libguile/error.x"
}