added patch from Brad Fitzpatrick
authorMiklos Szeredi <miklos@szeredi.hu>
Wed, 14 Jul 2004 06:24:50 +0000 (06:24 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Wed, 14 Jul 2004 06:24:50 +0000 (06:24 +0000)
perl/Fuse.xs
perl/Makefile.PL

index 0a460b941089623817a46eb0f6efcf4c757d0071..fa75e5c3db771ea4ec9afea3925e1b6893f16d22 100644 (file)
@@ -476,7 +476,7 @@ int _PLfuse_write (const char *file, const char *buf, size_t buflen, off_t off)
        return rv;
 }
 
-int _PLfuse_statfs (struct fuse_statfs *st) {
+int _PLfuse_statfs (struct statfs *st) {
        int rv;
        char *rvstr;
        dSP;
@@ -488,12 +488,12 @@ int _PLfuse_statfs (struct fuse_statfs *st) {
        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
index d495683ccb7d26ba48afb678aca5ac70bb93f66c..6e66f46c5aa1c49d2638d26760e4a573eb6c6549 100644 (file)
@@ -13,5 +13,5 @@ WriteMakefile(
        # 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
 );