aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/configure.ac
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2007-06-19 09:23:02 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2007-06-19 09:23:02 +0000
commit2b3a22fea0509681d9e86d5131a0008165bbf6ba (patch)
tree23361a3b8bad1fa164afff72a3bd55924bb14022 /kernel/configure.ac
parent1f35c65f941b4f6de4ea52375fad2c6f7f954a8f (diff)
downloadlibfuse-2b3a22fea0509681d9e86d5131a0008165bbf6ba.tar.gz
kernel: sync with mainline (2.6.22)
Diffstat (limited to 'kernel/configure.ac')
-rw-r--r--kernel/configure.ac9
1 files changed, 8 insertions, 1 deletions
diff --git a/kernel/configure.ac b/kernel/configure.ac
index 0427afd..ef44a15 100644
--- a/kernel/configure.ac
+++ b/kernel/configure.ac
@@ -193,8 +193,15 @@ if test "$ENABLE_FUSE_MODULE" = y; then
else
AC_MSG_RESULT([no])
fi
+ AC_MSG_CHECKING([if kernel has exportfs.h ])
+ if test -f $kernelsrc/include/linux/exportfs.h; then
+ AC_DEFINE(HAVE_EXPORTFS_H, 1, [kernel has exportfs.h])
+ AC_MSG_RESULT([yes])
+ else
+ AC_MSG_RESULT([no])
+ fi
AC_MSG_CHECKING([if kernel has BLOCK option ])
- if test -f $kernelsrc/block/Kconfig && egrep -wq "config *BLOCK" $kernelsrc/block/Kconfig; then
+ if test -f $kernelsrc/block/Kconfig && egrep -q "config *BLOCK" $kernelsrc/block/Kconfig; then
AC_DEFINE(HAVE_CONFIG_BLOCK, 1, [kernel has BLOCK option])
AC_MSG_RESULT([yes])
else