diff options
author | 2025-09-29 11:10:14 +0200 | |
---|---|---|
committer | 2025-09-29 11:10:14 +0200 | |
commit | e22e5b2a54475eca5eddd3afe1f1997a992c5040 (patch) | |
tree | 5896abcbfc7a54f53fd87a4ccec13f6df48a79cb | |
parent | abdd4d93a18ee9c03a90da740ff690c065a580d4 (diff) | |
download | ifuse-e22e5b2a54475eca5eddd3afe1f1997a992c5040.tar.gz ifuse-e22e5b2a54475eca5eddd3afe1f1997a992c5040.tar.bz2 |
Fix build on macOS (disable Darwin extensions)
-rw-r--r-- | src/ifuse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ifuse.c b/src/ifuse.c index b36a446..d0a4f98 100644 --- a/src/ifuse.c +++ b/src/ifuse.c @@ -20,6 +20,7 @@ */ #define FUSE_USE_VERSION 30 +#define FUSE_DARWIN_ENABLE_EXTENSIONS 0 #ifdef HAVE_CONFIG_H #include <config.h> |