* 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:
parent
e415cb0666
commit
a059974535
100 changed files with 823 additions and 785 deletions
|
|
@ -43,17 +43,17 @@
|
|||
gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
|
||||
|
||||
|
||||
#include "_scm.h"
|
||||
#include "print.h"
|
||||
#include "smob.h"
|
||||
#include "dynwind.h"
|
||||
#include "fluids.h"
|
||||
#include "alist.h"
|
||||
#include "eval.h"
|
||||
#include "ports.h"
|
||||
#include "libguile/_scm.h"
|
||||
#include "libguile/print.h"
|
||||
#include "libguile/smob.h"
|
||||
#include "libguile/dynwind.h"
|
||||
#include "libguile/fluids.h"
|
||||
#include "libguile/alist.h"
|
||||
#include "libguile/eval.h"
|
||||
#include "libguile/ports.h"
|
||||
|
||||
#define INITIAL_FLUIDS 10
|
||||
#include "validate.h"
|
||||
#include "libguile/validate.h"
|
||||
|
||||
static volatile int n_fluids;
|
||||
long scm_tc16_fluid;
|
||||
|
|
@ -260,7 +260,7 @@ scm_init_fluids ()
|
|||
{
|
||||
scm_tc16_fluid = scm_make_smob_type_mfpe ("fluid", 0,
|
||||
NULL, NULL, print_fluid, NULL);
|
||||
#include "fluids.x"
|
||||
#include "libguile/fluids.x"
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue