diff options
author | rillig <rillig> | 2007-01-28 15:39:26 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-01-28 15:39:26 +0000 |
commit | 4c91fe25495904d456fd89bd639bf6f19006e608 (patch) | |
tree | 059212cc5d714db4e20a1717c641d1f6423e7007 /sysutils/gnome-vfs2 | |
parent | d2760c2cb12ad34061c5ae704dd9a58bef2626d8 (diff) | |
download | pkgsrc-4c91fe25495904d456fd89bd639bf6f19006e608.tar.gz |
Added a patch that fixes PR 35263.
Diffstat (limited to 'sysutils/gnome-vfs2')
-rw-r--r-- | sysutils/gnome-vfs2/distinfo | 3 | ||||
-rw-r--r-- | sysutils/gnome-vfs2/patches/patch-cb | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/sysutils/gnome-vfs2/distinfo b/sysutils/gnome-vfs2/distinfo index 703dfd27a7d..a4812569514 100644 --- a/sysutils/gnome-vfs2/distinfo +++ b/sysutils/gnome-vfs2/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.60 2006/12/01 21:16:02 rillig Exp $ +$NetBSD: distinfo,v 1.61 2007/01/28 15:39:26 rillig Exp $ SHA1 (gnome-vfs-2.16.3.tar.bz2) = a4c97179e2c4abf8cfcf236e56f7d328feaef89b RMD160 (gnome-vfs-2.16.3.tar.bz2) = 9600bb4f4630d48600c1469fa5077d8e969a10cc @@ -19,3 +19,4 @@ SHA1 (patch-ba) = 5299eb32ff0c14eb98d8f7dd5e104cd931a02b51 SHA1 (patch-bb) = 0b8d12e9b44547a0262231a09d181f4ccde0c1f3 SHA1 (patch-bc) = d71be2e22ae3bb87c163a43ae457362a0e77cfe1 SHA1 (patch-ca) = c8d73a528d4a7260e4d976ba6c426ca92e7593e8 +SHA1 (patch-cb) = ec6b725e33aade30f593bc7f0986c21bcde29057 diff --git a/sysutils/gnome-vfs2/patches/patch-cb b/sysutils/gnome-vfs2/patches/patch-cb new file mode 100644 index 00000000000..dc625ce1c7e --- /dev/null +++ b/sysutils/gnome-vfs2/patches/patch-cb @@ -0,0 +1,16 @@ +$NetBSD: patch-cb,v 1.1 2007/01/28 15:39:27 rillig Exp $ + +PR: 35263 + +--- modules/file-method-acl.c.orig 2006-08-07 10:16:27.000000000 +0200 ++++ modules/file-method-acl.c 2007-01-28 16:34:35.000000000 +0100 +@@ -34,6 +34,9 @@ + #include <unistd.h> + #include <stdlib.h> + #include <sys/types.h> ++#ifdef HAVE_SYS_TIME_H ++#include <sys/time.h> /* <sys/resource.h> needs this on MacOS X */ ++#endif + #include <sys/resource.h> + + #ifdef HAVE_PWD_H |