return rv;
}
-int _PLfuse_statfs (struct fuse_statfs *st) {
+int _PLfuse_statfs (struct statfs *st) {
int rv;
char *rvstr;
dSP;
rv = call_sv(_PLfuse_callbacks[17],G_ARRAY);
SPAGAIN;
if(rv > 5) {
- st->block_size = POPi;
- st->blocks_free = POPi;
- st->blocks = POPi;
- st->files_free = POPi;
- st->files = POPi;
- st->namelen = POPi;
+ st->f_bsize = POPi;
+ st->f_bfree = POPi;
+ st->f_blocks = POPi;
+ st->f_ffree = POPi;
+ st->f_files = POPi;
+ st->f_namelen = POPi;
if(rv > 6)
rv = POPi;
else
# Insert -I. if you add *.h files later:
'INC' => '-I../include', # e.g., '-I/usr/include/other'
# Un-comment this if you add C files to link with later:
- 'OBJECT' => 'Fuse.o ../lib/libfuse.a -lpthread', # link all the C files too
+ 'OBJECT' => 'Fuse.o ../lib/.libs/libfuse.a -lpthread', # link all the C files too
);