Currently sheepfs is getting automatically built, which is annoying as it fails on systems that don't have libfuse development headers, which is quite very common. Default to no so that things build out of the box in most cases. An alternative would be to automatically build sheepfs if libfuse headers are available, but my autoconf skills aren't good enough to implement that. Signed-off-by: Christoph Hellwig <hch at lst.de> diff --git a/configure.ac b/configure.ac index d3bd0eb..663bd25 100644 --- a/configure.ac +++ b/configure.ac @@ -211,7 +211,7 @@ AM_CONDITIONAL(BUILD_TRACE, test x$enable_trace = xyes) AC_ARG_ENABLE([sheepfs], [ --enable-sheepfs : enable sheepfs],, - [ enable_sheepfs="yes" ],) + [ enable_sheepfs="no" ],) AM_CONDITIONAL(BUILD_SHEEPFS, test x$enable_sheepfs = xyes) CP=cp |