1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 04:10:18 +02:00

* configure.in: Remove --disable-debug option. The debugging

support is pretty stable now, and it's confusing people.
* configure: Regenerated.
This commit is contained in:
Jim Blandy 1998-09-05 16:48:23 +00:00
parent 94ff097743
commit c176b92b54
2 changed files with 231 additions and 246 deletions

464
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -11,14 +11,6 @@ AM_CONFIG_HEADER(libguile/scmconfig.h)
#
#--------------------------------------------------------------------
AC_ARG_ENABLE(debug,
[ --disable-debug Don't include debugging support])
if test "$enableval" != n && test "$enableval" != no; then
AC_DEFINE(DEBUG_EXTENSIONS)
AC_DEFINE(READER_EXTENSIONS)
LIBOBJS="backtrace.o stacks.o debug.o srcprop.o $LIBOBJS"
fi
AC_ARG_ENABLE(dynamic-linking,
[ --enable-dynamic-linking Include support for dynamic linking],,
enable_dynamic_linking=yes)
@ -29,6 +21,11 @@ if test "$enableval" = y || test "$enableval" = yes; then
AC_DEFINE(GUILE_DEBUG)
fi
dnl The --disable-debug used to control these two. But now they are
dnl a required part of the distribution.
AC_DEFINE(DEBUG_EXTENSIONS)
AC_DEFINE(READER_EXTENSIONS)
#--------------------------------------------------------------------
AC_PROG_CC