Adjustments to configure options
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Mon, 12 Jun 2000 15:04:39 +0000 (15:04 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Mon, 12 Jun 2000 15:04:39 +0000 (15:04 +0000)
configure.in

index 25763e7..395ca7d 100644 (file)
@@ -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)