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
parent
f01c486d2f
commit
690220ecfa
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue