aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBernd Schubert <bernd.schubert@fastmail.fm>2024-04-25 17:09:05 +0200
committerGitHub <noreply@github.com>2024-04-25 17:09:05 +0200
commit45effd5db890bb3b3fc46fe083de4babb6747a05 (patch)
tree995aab1146f993ba379f53ba07ad7c14d31951ac /lib
parent80663a79360a79d976ebf1fddb8fdff19139851f (diff)
downloadlibfuse-45effd5db890bb3b3fc46fe083de4babb6747a05.tar.gz
[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.
Diffstat (limited to 'lib')
-rw-r--r--lib/mount_bsd.c2
1 files changed, 1 insertions, 1 deletions
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"