[SCM] VLC media player packaging branch, sid, updated. debian/1.1.0-3-5-g0aacc91

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jul 11 00:58:29 UTC 2010


The following commit has been merged in the sid branch:
commit ad318e527764a2d7ab2fe7d015b9285479877de7
Author: Reinhard Tartler <siretart at tauware.de>
Date:   Sat Jul 10 19:36:12 2010 -0400

    fix kfreebsd ftbfs in access file module (Closes: #588655)

diff --git a/debian/patches/504_fix_kfreebsd_ftbfs_access_file_module.diff b/debian/patches/504_fix_kfreebsd_ftbfs_access_file_module.diff
new file mode 100644
index 0000000..bed9095
--- /dev/null
+++ b/debian/patches/504_fix_kfreebsd_ftbfs_access_file_module.diff
@@ -0,0 +1,18 @@
+Author: Reinhard Tartler <siretart at tauware.de>
+Subject: fix kfreebsd ftbfs in access file module
+
+Found while testbuilding on asdfasdf.debian.net
+
+diff --git a/modules/access/file.c b/modules/access/file.c
+index 3531fa7..dfd435e 100644
+--- a/modules/access/file.c
++++ b/modules/access/file.c
+@@ -96,7 +96,7 @@ static bool IsRemote (int fd)
+     if (fstatvfs (fd, &stf))
+         return false;
+     /* fstatvfs() is in POSIX, but MNT_LOCAL is not */
+-    return !(s.f_flag & MNT_LOCAL);
++    return !(stf.f_flag & MNT_LOCAL);
+ 
+ #elif defined (HAVE_LINUX_MAGIC_H)
+     struct statfs stf;
diff --git a/debian/patches/series b/debian/patches/series
index 9c8fb9c..374b818 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -5,3 +5,4 @@
 501_decrease_alsa_buffer.diff
 502_xulrunner_191.diff
 503_mpeg2_arm.diff
+504_fix_kfreebsd_ftbfs_access_file_module.diff

-- 
VLC media player packaging



More information about the pkg-multimedia-commits mailing list