1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

* configure.in: Build with backtrace.o and stacks.o if debug

support enabled.
This commit is contained in:
Mikael Djurfeldt 1996-10-14 03:24:57 +00:00
parent ab4f3efbfc
commit 9ab71a53ad
2 changed files with 2 additions and 2 deletions

2
libguile/configure vendored
View file

@ -541,7 +541,7 @@ EOF
#define READER_EXTENSIONS 1
EOF
LIBOBJS="debug.o srcprop.o $LIBOBJS"
LIBOBJS="backtrace.o stacks.o debug.o srcprop.o $LIBOBJS"
fi
#--------------------------------------------------------------------

View file

@ -14,7 +14,7 @@ AC_ARG_ENABLE(debug,
if test "$enableval" != n && test "$enableval" != no; then
AC_DEFINE(DEBUG_EXTENSIONS)
AC_DEFINE(READER_EXTENSIONS)
LIBOBJS="debug.o srcprop.o $LIBOBJS"
LIBOBJS="backtrace.o stacks.o debug.o srcprop.o $LIBOBJS"
fi
#--------------------------------------------------------------------