From 62002dcbec7dc0e3ca21828abde23f78c36ff665 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Mon, 12 Jun 2000 15:04:39 +0000 Subject: [PATCH] Adjustments to configure options --- configure.in | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/configure.in b/configure.in index 25763e793..395ca7d76 100644 --- a/configure.in +++ b/configure.in @@ -40,24 +40,24 @@ AC_CONFIG_SUBDIRS(guile-readline) # #-------------------------------------------------------------------- -AC_ARG_ENABLE(guile-debug, - [ --enable-guile-debug include internal debugging functions], - if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then - AC_DEFINE(GUILE_DEBUG) - fi) - AC_ARG_ENABLE(debug-freelist, - [ --enable-debug-freelist Include garbage collector freelist debugging code], + [ --enable-debug-freelist include garbage collector freelist debugging code], if test "$enable_debug_freelist" = y || test "$enable_debug_freelist" = yes; then AC_DEFINE(GUILE_DEBUG_FREELIST) fi) AC_ARG_ENABLE(debug-malloc, - [ --enable-debug-malloc Include malloc debugging code], + [ --enable-debug-malloc include malloc debugging code], if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then AC_DEFINE(GUILE_DEBUG_MALLOC) fi) +AC_ARG_ENABLE(guile-debug, + [ --enable-guile-debug include internal debugging functions], + if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then + AC_DEFINE(GUILE_DEBUG) + fi) + AC_ARG_ENABLE(arrays, [ --disable-arrays omit array and uniform array support],, enable_arrays=yes)