[Ocfs2-commits] smushran commits r785 - trunk
svn-commits at oss.oracle.com
svn-commits at oss.oracle.com
Wed Mar 17 14:10:10 CST 2004
Author: smushran
Date: 2004-03-17 14:10:08 -0600 (Wed, 17 Mar 2004)
New Revision: 785
Modified:
trunk/
trunk/configure.in
Log:
configure shows --enable options used
Property changes on: trunk
___________________________________________________________________
Name: svn:ignore
+ configure
Config.make
config.cache
config.log
config.status
autom4te.cache
Modified: trunk/configure.in
===================================================================
--- trunk/configure.in 2004-03-17 20:04:10 UTC (rev 784)
+++ trunk/configure.in 2004-03-17 20:10:08 UTC (rev 785)
@@ -83,34 +83,43 @@
AC_MSG_ERROR(GCC is required)
fi
+AC_MSG_CHECKING(for debugging)
AC_ARG_ENABLE(debug, [ --enable-debug=[yes/no] Turn on debugging [default=yes]],,enable_debug=yes)
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 aio)
AC_ARG_ENABLE(aio, [ --enable-aio=[yes/no] Turn on aio [default=yes]],,enable_aio=yes)
OCFS_AIO=yes
if test "x$enable_aio" = "xno"; then
OCFS_AIO=
fi
AC_SUBST(OCFS_AIO)
+AC_MSG_RESULT($enable_aio)
+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=yes]],,enable_trace=yes)
OCFS_TRACE=
if test "x$enable_trace" = "xyes"; then
OCFS_TRACE=yes
fi
AC_SUBST(OCFS_TRACE)
+AC_MSG_RESULT($enable_trace)
+AC_MSG_CHECKING(for large ios)
AC_ARG_ENABLE(largeio, [ --enable-largeio=[yes/no/auto] Turn on largeio [default=auto]],,enable_largeio=auto)
OCFS_LARGEIO=yes
if test "x$enable_largeio" = "xno"; then
@@ -121,6 +130,7 @@
fi
fi
AC_SUBST(OCFS_LARGEIO)
+AC_MSG_RESULT($enable_largeio)
AC_MSG_CHECKING(for directory with kernel source)
AC_ARG_WITH(kernel, [ --with-kernel=dir Path to the kernel source tree [/usr/src/linux]], kerneldir="$withval",
More information about the Ocfs2-commits
mailing list