From a3e5e30f9adcc27725fec9f6fab8c059c982783b Mon Sep 17 00:00:00 2001 From: Andrei Gherzan Date: Wed, 13 Jul 2022 12:07:38 +0200 Subject: [PATCH] configure: Clarify libfuse version Many distros package libfuse's versions as different packages. For example, Ubuntu (jammy for example) has a package for libfuse2 and libfuse3. Now the issue is that libfuse-dev pulls is libfuse2 while there is no libfuse2-dev. This patch clarifies the version of fuse in the configure error. Signed-off-by: Andrei Gherzan --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9b92e92..9b3ea19 100644 --- a/configure.ac +++ b/configure.ac @@ -30,7 +30,7 @@ AC_CHECK_TYPES([ptrdiff_t]) AC_DEFINE([USE_DIFF_HASH], 1, [Use the same hashing function as GNU diff]) -PKG_CHECK_MODULES([FUSE], [fuse3 >= 3.2.1], [AC_DEFINE([HAVE_FUSE], 1, [Define if libfuse is available])], [AC_MSG_ERROR([*** libfuse not found])]]) +PKG_CHECK_MODULES([FUSE], [fuse3 >= 3.2.1], [AC_DEFINE([HAVE_FUSE], 1, [Define if libfuse3 is available])], [AC_MSG_ERROR([*** libfuse3 not found])]]) old_CFLAGS=$CFLAGS old_LDFLAGS=$LDFLAGS