Update to fuse 2.9

This commit is contained in:
Sebastian Messmer 2023-08-06 11:20:32 -07:00
parent d6252896e0
commit 3395435045
3 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ Version 0.12.0 (unreleased)
* Fixed small inaccuracy in calculation of free space in statvfs
* Use libcurl dependency from conan instead of requiring it to be preinstalled
* Updated dependencies to
* Fuse 2.9
* DokanY 2.0.6.1000
* range-v3/0.12.0
* boost 1.79

View File

@ -89,7 +89,7 @@ Requirements
- CMake version >= 3.10
- pkg-config (on Unix)
- Conan package manager (version 1.x)
- libFUSE version >= 2.8.6 (including development headers), on Mac OS X instead install macFUSE from https://osxfuse.github.io/
- libFUSE version >= 2.9 (including development headers), on Mac OS X instead install macFUSE from https://osxfuse.github.io/
- Python >= 3.5
- OpenMP

View File

@ -2,7 +2,7 @@
#ifndef MESSMER_FSPP_FUSE_PARAMS_H_
#define MESSMER_FSPP_FUSE_PARAMS_H_
#define FUSE_USE_VERSION 26
#define FUSE_USE_VERSION 29
#include <fuse.h>
#endif