mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 12:20:26 +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:
parent
94ff097743
commit
c176b92b54
2 changed files with 231 additions and 246 deletions
13
configure.in
13
configure.in
|
@ -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,
|
AC_ARG_ENABLE(dynamic-linking,
|
||||||
[ --enable-dynamic-linking Include support for dynamic linking],,
|
[ --enable-dynamic-linking Include support for dynamic linking],,
|
||||||
enable_dynamic_linking=yes)
|
enable_dynamic_linking=yes)
|
||||||
|
@ -29,6 +21,11 @@ if test "$enableval" = y || test "$enableval" = yes; then
|
||||||
AC_DEFINE(GUILE_DEBUG)
|
AC_DEFINE(GUILE_DEBUG)
|
||||||
fi
|
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
|
AC_PROG_CC
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue