diff options
author | Marius Vollmer <mvo@zagadka.de> | 2000-11-17 16:25:05 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2000-11-17 16:25:05 +0000 |
commit | 8dc9439fc660ef7914d63fd8c1fc58092b5f6fa5 (patch) | |
tree | 86014ec2f5662002de0fe3fc6f1549dd64ad4f12 /libguile/debug-malloc.c | |
parent | 6b72ac1d10d8b1ab78f3afa6e92b835c1e77c80e (diff) |
* alist.c, arbiters.c, async.c, backtrace.c, boolean.c, chars.c,
continuations.c, debug-malloc.c, debug.c, dynl.c, dynwind.c,
environments.c, eq.c, error.c, eval.c, evalext.c, feature.c,
filesys.c, fluids.c, fports.c, gc.c, goops.c, guardians.c, hash.c,
hashtab.c, hooks.c, ioext.c, iselect.c, keywords.c, lang.c,
list.c, load.c, macros.c, modules.c, net_db.c, numbers.c,
objects.c, objprop.c, options.c, pairs.c, ports.c, posix.c,
print.c, procprop.c, procs.c, properties.c, ramap.c, random.c,
read.c, regex-posix.c, root.c, scmsigs.c, script.c, simpos.c,
socket.c, sort.c, srcprop.c, stackchk.c, stacks.c, stime.c,
strings.c, strop.c, strorder.c, strports.c, struct.c, symbols.c,
tag.c, threads.c, throw.c, unif.c, variable.c, vectors.c,
version.c, vports.c, weaks.c: Makes sure the snarfer output
inclusion is disabled when the snarfer is run on the file. Thanks
to Lars J. Aas!
* Makefile.am: Install guile-procedures.txt in version-specific
directory to enable multiple installed guile versions. Suggested
by Karl M. Hegbloom <karlheg@debian.org, patch by Matthias Koeppe.
Diffstat (limited to 'libguile/debug-malloc.c')
-rw-r--r-- | libguile/debug-malloc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libguile/debug-malloc.c b/libguile/debug-malloc.c index a7c5974a3..d0fba532e 100644 --- a/libguile/debug-malloc.c +++ b/libguile/debug-malloc.c @@ -256,5 +256,8 @@ scm_debug_malloc_prehistory () void scm_init_debug_malloc () { +#ifndef SCM_MAGIC_SNARFER #include "libguile/debug-malloc.x" +#endif } + |