mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-24 12:20:20 +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:
parent
e415cb0666
commit
a059974535
100 changed files with 823 additions and 785 deletions
|
@ -45,24 +45,24 @@
|
|||
|
||||
|
||||
#include <stdio.h>
|
||||
#include "_scm.h"
|
||||
#include "smob.h"
|
||||
#include "alist.h"
|
||||
#include "eval.h"
|
||||
#include "eq.h"
|
||||
#include "dynwind.h"
|
||||
#include "backtrace.h"
|
||||
#include "libguile/_scm.h"
|
||||
#include "libguile/smob.h"
|
||||
#include "libguile/alist.h"
|
||||
#include "libguile/eval.h"
|
||||
#include "libguile/eq.h"
|
||||
#include "libguile/dynwind.h"
|
||||
#include "libguile/backtrace.h"
|
||||
#ifdef DEBUG_EXTENSIONS
|
||||
#include "debug.h"
|
||||
#include "libguile/debug.h"
|
||||
#endif
|
||||
#include "continuations.h"
|
||||
#include "stackchk.h"
|
||||
#include "stacks.h"
|
||||
#include "fluids.h"
|
||||
#include "ports.h"
|
||||
#include "libguile/continuations.h"
|
||||
#include "libguile/stackchk.h"
|
||||
#include "libguile/stacks.h"
|
||||
#include "libguile/fluids.h"
|
||||
#include "libguile/ports.h"
|
||||
|
||||
#include "validate.h"
|
||||
#include "throw.h"
|
||||
#include "libguile/validate.h"
|
||||
#include "libguile/throw.h"
|
||||
|
||||
|
||||
/* the jump buffer data structure */
|
||||
|
@ -732,7 +732,7 @@ scm_init_throw ()
|
|||
NULL,
|
||||
print_lazy_catch,
|
||||
NULL);
|
||||
#include "throw.x"
|
||||
#include "libguile/throw.x"
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue