From 45effd5db890bb3b3fc46fe083de4babb6747a05 Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Thu, 25 Apr 2024 17:09:05 +0200 Subject: [PATCH] [libFuse 3.16.2]Compilation failure on freeBSD #936 (#938) Despite the creation of the header file fuse_config.h during LibFUSE version 3.16.2's Meson build process, the BSD mount_bsd.c file continues to reference config.h. Consequently, this discrepancy results in compilation failures. FIX : Point the mount_bsd.c to correct header. --- lib/mount_bsd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mount_bsd.c b/lib/mount_bsd.c index 73abc67..c9669ae 100644 --- a/lib/mount_bsd.c +++ b/lib/mount_bsd.c @@ -8,7 +8,7 @@ See the file COPYING.LIB. */ -#include "config.h" +#include "fuse_config.h" #include "fuse_i.h" #include "fuse_misc.h" #include "fuse_opt.h" -- 2.30.2