[libFuse 3.16.2]Compilation failure on freeBSD #936 (#938)
authorBernd Schubert <bernd.schubert@fastmail.fm>
Thu, 25 Apr 2024 15:09:05 +0000 (17:09 +0200)
committerGitHub <noreply@github.com>
Thu, 25 Apr 2024 15:09:05 +0000 (17:09 +0200)
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

index 73abc67d70bf35fc424c5c721cc1b14555d0af24..c9669ae4bb1a6177e25e336cf2ca10cd62493fcc 100644 (file)
@@ -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"