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

Salvatore Bonaccorso carnil at debian.org
Mon Apr 30 14:13:14 UTC 2012


The following commit has been merged in the master branch:
commit 60a7c51c2591b89c913cca02b99fd7db3846e1cd
Author: Salvatore Bonaccorso <carnil at debian.org>
Date:   Mon Apr 30 14:20:35 2012 +0200

    Add defined(__GNU__) to fix-FTBFS-on-kfreebsd.patch
    
    Git-Dch: Ignore

diff --git a/debian/patches/fix-FTBFS-on-kfreebsd.patch b/debian/patches/fix-FTBFS-on-kfreebsd.patch
index 688aa6d..5881ffc 100644
--- a/debian/patches/fix-FTBFS-on-kfreebsd.patch
+++ b/debian/patches/fix-FTBFS-on-kfreebsd.patch
@@ -3,7 +3,7 @@ Origin: vendor
 Bug-Debian: http://bugs.debian.org/670808
 Forwarded: no
 Author: Salvatore Bonaccorso <carnil at debian.org>
-Last-Update: 2012-04-29
+Last-Update: 2012-04-30
 
 --- a/Fuse.xs
 +++ b/Fuse.xs
@@ -12,7 +12,7 @@ Last-Update: 2012-04-29
  #endif
  
 -#if defined(__linux__)
-+#if ( defined(__linux__) || defined(__GLIBC__) )
++#if ( defined(__linux__) || defined(__GNU__) || defined(__GLIBC__) )
  # define STAT_SEC(st, st_xtim) ((st)->st_xtim.tv_sec)
  # define STAT_NSEC(st, st_xtim) ((st)->st_xtim.tv_nsec)
  #else

-- 
Write filesystems in Perl using FUSE



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