diff options
author | hasso <hasso> | 2009-10-26 07:38:21 +0000 |
---|---|---|
committer | hasso <hasso> | 2009-10-26 07:38:21 +0000 |
commit | a827914fd23c30d8804dc8bbaeccc500575f4517 (patch) | |
tree | 04447fcdb643826d2f9b7c36b4490f56f00913ba /multimedia | |
parent | ffd7fe1fce9e379865ff780231b20710039e0f60 (diff) | |
download | pkgsrc-a827914fd23c30d8804dc8bbaeccc500575f4517.tar.gz |
Fix build on DragonFly (undefined MNT_LOCAL).
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/vlc/distinfo | 4 | ||||
-rw-r--r-- | multimedia/vlc/patches/patch-aa | 11 |
2 files changed, 8 insertions, 7 deletions
diff --git a/multimedia/vlc/distinfo b/multimedia/vlc/distinfo index c05ab8bcd9c..bee0b3d91c6 100644 --- a/multimedia/vlc/distinfo +++ b/multimedia/vlc/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.32 2009/09/24 22:14:57 ahoka Exp $ +$NetBSD: distinfo,v 1.33 2009/10/26 07:38:21 hasso Exp $ SHA1 (vlc-1.0.2.tar.bz2) = 5207d227f09d16a44823ae4a8b2144b3ce18eefb RMD160 (vlc-1.0.2.tar.bz2) = 36f93339d1947483bb5ef4877cbb4b3ab200b3cd Size (vlc-1.0.2.tar.bz2) = 20958212 bytes -SHA1 (patch-aa) = d1ff094fbfa4f5606b2e1ba27301b681b08ec421 +SHA1 (patch-aa) = 76ef868076df4e423acfe5ca65999fbd26167bfe SHA1 (patch-configure) = 508d9fc4ee8bc8526fb5cdf1b161c573216036c4 SHA1 (patch-v4l2) = 1f91206f8e2f78514056386977a6c2230a710211 diff --git a/multimedia/vlc/patches/patch-aa b/multimedia/vlc/patches/patch-aa index c4d299b6d5d..47a64d453d4 100644 --- a/multimedia/vlc/patches/patch-aa +++ b/multimedia/vlc/patches/patch-aa @@ -1,17 +1,18 @@ -$NetBSD: patch-aa,v 1.10 2009/09/24 22:14:57 ahoka Exp $ +$NetBSD: patch-aa,v 1.11 2009/10/26 07:38:21 hasso Exp $ ---- modules/access/file.c.orig 2009-09-18 18:37:45.000000000 +0200 -+++ modules/access/file.c -@@ -50,6 +50,8 @@ +--- modules/access/file.c.orig 2009-09-18 19:37:45 +0300 ++++ modules/access/file.c 2009-09-26 07:18:35 +0300 +@@ -50,6 +50,9 @@ #if defined (__linux__) # include <sys/vfs.h> # include <linux/magic.h> +#elif defined (HAVE_FSTATVFS) +# include <sys/statvfs.h> ++# include <sys/mount.h> #elif defined (HAVE_SYS_MOUNT_H) # include <sys/param.h> # include <sys/mount.h> -@@ -126,7 +128,12 @@ struct access_sys_t +@@ -126,7 +129,12 @@ struct access_sys_t static bool IsRemote (int fd) { |