[Ocfs-tools-commits] rev 3 - trunk

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Wed Feb 4 19:20:03 CST 2004


Author: manish
Date: 2004-02-04 19:20:01 -0600 (Wed, 04 Feb 2004)
New Revision: 3

Modified:
   trunk/configure.in
Log:
configure.in wee-bit more descriptive


Modified: trunk/configure.in
===================================================================
--- trunk/configure.in	2004-01-29 08:00:03 UTC (rev 2)
+++ trunk/configure.in	2004-02-05 01:20:01 UTC (rev 3)
@@ -100,26 +100,32 @@
   AC_MSG_ERROR(GCC is required)
 fi
 
+AC_MSG_CHECKING(for debugging)
 AC_ARG_ENABLE(debug, [  --enable-debug=[yes/no]         Turn on debugging [default=no]],,enable_debug=no)
 OCFS_DEBUG=
 if test "x$enable_debug" = "xyes"; then
   OCFS_DEBUG=yes
 fi
 AC_SUBST(OCFS_DEBUG)
+AC_MSG_RESULT($enable_debug)
 
+AC_MSG_CHECKING(for memory debugging)
 AC_ARG_ENABLE(memdebug, [  --enable-memdebug=[yes/no]     Turn on memory debugging [default=no]],,enable_memdebug=no)
 OCFS_MEMDEBUG=
 if test "x$enable_memdebug" = "xyes"; then
   OCFS_MEMDEBUG=yes
 fi
 AC_SUBST(OCFS_MEMDEBUG)
+AC_MSG_RESULT($enable_memdebug)
 
+AC_MSG_CHECKING(for tracing)
 AC_ARG_ENABLE(trace, [  --enable-trace=[yes/no]         Turn on tracing [default=no]],,enable_trace=no)
 OCFS_TRACE=
 if test "x$enable_trace" = "xyes"; then
   OCFS_TRACE=yes
 fi
 AC_SUBST(OCFS_TRACE)
+AC_MSG_RESULT($enable_trace)
 
 GLIB_REQUIRED_VERSION=1.2.8
 GTK_REQUIRED_VERSION=1.2.8



More information about the Ocfs-tools-commits mailing list