diff options
author | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-04-25 17:09:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-25 17:09:05 +0200 |
commit | 45effd5db890bb3b3fc46fe083de4babb6747a05 (patch) | |
tree | 995aab1146f993ba379f53ba07ad7c14d31951ac /lib/mount_bsd.c | |
parent | 80663a79360a79d976ebf1fddb8fdff19139851f (diff) | |
download | libfuse-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/mount_bsd.c')
-rw-r--r-- | lib/mount_bsd.c | 2 |
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" |