From: Bernd Schubert Date: Thu, 25 Apr 2024 15:09:05 +0000 (+0200) Subject: [libFuse 3.16.2]Compilation failure on freeBSD #936 (#938) X-Git-Tag: fuse-3.17.1-rc0~127 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=45effd5db890bb3b3fc46fe083de4babb6747a05;p=qemu-gpiodev%2Flibfuse.git [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. --- 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"