[SCM] Write filesystems in Perl using FUSE branch, master, updated. debian/0.15.1-1-2-gadc5852

Salvatore Bonaccorso carnil at debian.org
Sun Apr 29 20:38:19 UTC 2012


The following commit has been merged in the master branch:
commit d2218c83dc92eb9cbb4f0b8f04f3cf90d3929e97
Author: Salvatore Bonaccorso <carnil at debian.org>
Date:   Sun Apr 29 22:36:01 2012 +0200

    Add fix-FTBFS-on-kfreebsd.patch patch
    
    Fix FTBFS on Debian GNU/kFreeBSD architecture: "error: 'struct stat' has
    no member named 'st_ctimespec'".
    
    Closes: #670808

diff --git a/debian/patches/fix-FTBFS-on-kfreebsd.patch b/debian/patches/fix-FTBFS-on-kfreebsd.patch
new file mode 100644
index 0000000..89f7528
--- /dev/null
+++ b/debian/patches/fix-FTBFS-on-kfreebsd.patch
@@ -0,0 +1,18 @@
+Description: Fix FTBFS on Debian GNU/kFreeBSD
+Origin: vendor
+Bug-Debian: http://bugs.debian.org/670808
+Forwarded: no
+Author: Salvatore Bonaccorso <carnil at debian.org>
+Last-Update: 2012-04-29
+
+--- a/Fuse.xs
++++ b/Fuse.xs
+@@ -12,7 +12,7 @@
+ # include <sys/xattr.h>
+ #endif
+ 
+-#if defined(__linux__)
++#if defined(__linux__) || defined(__FreeBSD_kernel__)
+ # define STAT_SEC(st, st_xtim) ((st)->st_xtim.tv_sec)
+ # define STAT_NSEC(st, st_xtim) ((st)->st_xtim.tv_nsec)
+ #else
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..dafcd98
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+fix-FTBFS-on-kfreebsd.patch

-- 
Write filesystems in Perl using FUSE



More information about the Pkg-perl-cvs-commits mailing list