Subject: | Fix build with fuse 2.4.2 |
Build of 0.07_3 with fuse 2.4.2 on Fedora Core 4 fails, fix attached.
This change doesn't seem necessary with fuse 2.5.2, but doesn't appear
to hurt with it either.
Fuse.xs:550: warning: 'struct statvfs' declared inside parameter list
Fuse.xs:550: warning: its scope is only this definition or declaration,
which is probably not what you want
Subject: | perl-Fuse-0.07_3-statvfs.patch |
--- Fuse.xs~ 2006-01-03 18:45:16.000000000 +0200
+++ Fuse.xs 2006-02-11 21:47:28.000000000 +0200
@@ -546,6 +546,7 @@
#define _fuse_statvfs statfs
#else
#define _fuse_statvfs statvfs
+ #include <sys/statvfs.h>
#endif
int _PLfuse_statfs (const char *file, struct _fuse_statvfs *st) {