[kaffe] CVS kaffe (dalibor): Improved descriptions for debugging and JVMPI switches

Kaffe CVS cvs-commits at kaffe.org
Sat May 15 07:41:03 PDT 2004


PatchSet 4730 
Date: 2004/05/15 14:31:25
Author: dalibor
Branch: HEAD
Tag: (none) 
Log:
 Improved descriptions for debugging and JVMPI  switches

2004-05-15  Dalibor Topic  <robilad at kaffe.org>

        * configure.ac: Improved descriptions for debugging and JVMPI
        switches.

        * configure: Regenerated.

Members: 
	ChangeLog:1.2304->1.2305 
	configure:1.318->1.319 
	configure.ac:1.17->1.18 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.2304 kaffe/ChangeLog:1.2305
--- kaffe/ChangeLog:1.2304	Sat May 15 12:55:53 2004
+++ kaffe/ChangeLog	Sat May 15 14:31:25 2004
@@ -1,5 +1,12 @@
 2004-05-15  Dalibor Topic  <robilad at kaffe.org>
 
+	* configure.ac: Improved descriptions for debugging and JVMPI
+	switches.
+
+	* configure: Regenerated.
+
+2004-05-15  Dalibor Topic  <robilad at kaffe.org>
+
 	* configure.ac: Added 'checking' messages for debugging, bcel and
 	jvmpi. Improved JVMPI checking to use AC_ARG_ENABLE's features to
 	handle given and not given arguments.
Index: kaffe/configure
diff -u kaffe/configure:1.318 kaffe/configure:1.319
--- kaffe/configure:1.318	Sat May 15 12:55:54 2004
+++ kaffe/configure	Sat May 15 14:31:26 2004
@@ -1069,9 +1069,9 @@
   --disable-libtool-lock  avoid locking (might break parallel builds)
   --disable-nls           do not use Native Language Support
   --disable-rpath         do not hardcode runtime library paths
-  --enable-debug          Enable run-time debugging machinery
-                          [default=yes]
-  --enable-jvmpi          Enable JVMPI [default=no]
+  --disable-debug         Disable run-time debugging machinery. It is enabled
+                          by default.
+  --enable-jvmpi          Enable JVMPI. It is disabled by default.
   --enable-xprofiling     Enable profiling for C and jitted code
   --enable-xdebugging     Enable debugging symbol generation for jitted code
   --enable-feedback       Enable generation of feedback data
@@ -26242,16 +26242,17 @@
 if test "${enable_debug+set}" = set; then
   enableval="$enable_debug"
 
-fi;
-
-echo "$as_me:$LINENO: checking whether to enable run-time debugging machinery" >&5
-echo $ECHO_N "checking whether to enable run-time debugging machinery... $ECHO_C" >&6
-
 case "$enable_debug" in
 no) CPPFLAGS="$CPPFLAGS -DNDEBUG";;
 *) CPPFLAGS="$CPPFLAGS -DKAFFE_VMDEBUG";;
 esac
 
+else
+  enable_debug="yes"
+fi;
+
+echo "$as_me:$LINENO: checking whether to enable run-time debugging machinery" >&5
+echo $ECHO_N "checking whether to enable run-time debugging machinery... $ECHO_C" >&6
 echo "$as_me:$LINENO: result: $enable_debug" >&5
 echo "${ECHO_T}$enable_debug" >&6
 
Index: kaffe/configure.ac
diff -u kaffe/configure.ac:1.17 kaffe/configure.ac:1.18
--- kaffe/configure.ac:1.17	Sat May 15 12:55:59 2004
+++ kaffe/configure.ac	Sat May 15 14:31:31 2004
@@ -417,16 +417,17 @@
 dnl -------------------------------------------------------------------------
 
 AC_ARG_ENABLE([debug],
-	      AS_HELP_STRING([--enable-debug],
-			     [Enable run-time debugging machinery @<:@default=yes@:>@]))
-
-AC_MSG_CHECKING([whether to enable run-time debugging machinery])
-
+	      AS_HELP_STRING([--disable-debug],
+			     [Disable run-time debugging machinery. It is enabled by default.]),
+[
 case "$enable_debug" in
 no) CPPFLAGS="$CPPFLAGS -DNDEBUG";;
 *) CPPFLAGS="$CPPFLAGS -DKAFFE_VMDEBUG";;
 esac
+],
+	[enable_debug="yes"])
 
+AC_MSG_CHECKING([whether to enable run-time debugging machinery])
 AC_MSG_RESULT($enable_debug)
 
 dnl =========================================================================
@@ -452,7 +453,7 @@
 
 AC_ARG_ENABLE([jvmpi],
               AS_HELP_STRING([--enable-jvmpi],
-                             [Enable JVMPI @<:@default=no@:>@]),
+                             [Enable JVMPI. It is disabled by default.]),
 [
 case "$enable_jvmpi" in
 no) ;;




More information about the kaffe mailing list