Add check for FUSE to configure.ac

This code cannot compile without FUSE, so the build system should
check for FUSE and quit with an error if it isn't installed.
pull/3/head
Neal Gompa 2017-05-25 17:26:50 -04:00
parent f01c486d2f
commit 690220ecfa
1 changed files with 2 additions and 0 deletions

View File

@ -25,4 +25,6 @@ AC_CHECK_HEADERS([errno.h \
PKG_CHECK_MODULES([LIBNTFS_3G], [libntfs-3g >= 2017.3.23], [],
[AC_MSG_ERROR(["Unable to find libntfs-3g"])])
PKG_CHECK_MODULES([FUSE], [fuse >= 2.6.0], [],
[AC_MSG_ERROR(["Unable to find fuse"])])
AC_OUTPUT