diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 9b93123..b5c25d1 100644 --- a/configure.in +++ b/configure.in @@ -29,6 +29,8 @@ AC_ARG_ENABLE(util, [ --enable-util Compile with util ]) AC_ARG_ENABLE(example, [ --enable-example Compile with examples ]) +AC_ARG_ENABLE(auto-modprobe, + [ --enable-auto-modprobe Automatically insert kernel module]) subdirs="include patch" @@ -107,6 +109,9 @@ fi if test "$enable_example" != "no"; then subdirs="$subdirs example"; fi +if test "$enable_auto_modprobe" = "yes"; then + AC_DEFINE(AUTO_MODPROBE, 1, [Automatically insert kernel module]) +fi AC_CHECK_FUNCS([setxattr]) AC_CHECK_MEMBERS([struct stat.st_atim]) |