diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-07-24 19:56:16 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-07-24 19:56:16 +0000 |
commit | 209f5d053bae91fe404a0d08aaf5bb0be1d614f0 (patch) | |
tree | 79d20999e8e392c5231894d52d69a0ead679a421 /configure.in | |
parent | d66d3947d5d4fdda0bdde3f5299553673d4ee64e (diff) | |
download | libfuse-209f5d053bae91fe404a0d08aaf5bb0be1d614f0.tar.gz |
security fixes + other enhancements
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]) |