From 690220ecfa388edaf9a1199b29a04c78be53be68 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Thu, 25 May 2017 17:26:50 -0400 Subject: [PATCH] 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. --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index b799f89..18f75b7 100644 --- a/configure.ac +++ b/configure.ac @@ -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