1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 13:00:26 +02:00

non-srcdir build fixes

* guile-tools.in: Fix the checks to account for non-srcdir builds.

* libguile/frames.c:
* libguile/objcodes.c:
* libguile/programs.c:
* libguile/instructions.c:
* libguile/vm.c: Fix snarf-includes to cope with non-srcdir builds.

* libguile/instructions.h:
* libguile/instructions.c: Fix the stubs inclusion to be non-srcdir
  compatible.

* libguile/vm-expand.h (VM_DEFINE_INSTRUCTION): Fix some things so as not
  to require the instructions.h defintitions, since we have the codes
  already. Not important tho :)

* pre-inst-guile-env.in: Minor tweak that should have no effect.

* test-suite/standalone/Makefile.am (all-local): Remove a chmod +x step,
  the configure.ac rule should do that if necessary.
This commit is contained in:
Andy Wingo 2009-03-16 23:39:29 +01:00 committed by Andy Wingo
parent 8992a9e318
commit aeeff258c6
12 changed files with 26 additions and 27 deletions

View file

@ -305,7 +305,7 @@ scm_init_frames (void)
scm_bootstrap_vm ();
#ifndef SCM_MAGIC_SNARFER
#include "frames.x"
#include "libguile/frames.x"
#endif
}