[Ocfs2-commits] manish commits r826 - trunk
svn-commits at oss.oracle.com
svn-commits at oss.oracle.com
Tue Mar 30 20:14:02 CST 2004
Author: manish
Date: 2004-03-30 20:14:00 -0600 (Tue, 30 Mar 2004)
New Revision: 826
Modified:
trunk/configure.in
Log:
Remove warning about 2.6 support being BROKEN. It's not anymore. Huzzah!
Modified: trunk/configure.in
===================================================================
--- trunk/configure.in 2004-03-30 19:46:28 UTC (rev 825)
+++ trunk/configure.in 2004-03-31 02:14:00 UTC (rev 826)
@@ -194,30 +194,18 @@
AC_MSG_ERROR([Could not determine kernel version.])
fi
-AC_ARG_ENABLE(kernel-26, [ --enable-kernel-26=[yes/no] (BROKEN!) Enable building on Linux kernel version 2.6.x (default=no)],enable_kernel26=yes,enable_kernel26=no)
KERNEL_26=
-if test "x$enable_kernel26" = "xyes"; then
- KERNEL_26=yes
-fi
-AC_SUBST(KERNEL_26)
-
case "$kversion" in
2.4.*)
;;
2.6.*)
- if test "x$enable_kernel26" = "xyes"; then
- AC_MSG_WARN([
-Support for kernel version 2.6 is BROKEN at this time! Your system WILL hang.])
- else
- AC_MSG_ERROR([
-Support for kernel version 2.6 is BROKEN (Your system WILL hang!) at this time.
-You can use --enable-kernel-26 if you realy know what you're doing.])
- fi
+ KERNEL_26=yes
;;
*)
AC_MSG_ERROR([This module only supports kernel version 2.4.x])
;;
esac
+AC_SUBST(KERNEL_26)
KERNELVER=$kversion
AC_SUBST(KERNELVER)
More information about the Ocfs2-commits
mailing list