summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortron <tron>2014-08-22 15:25:10 +0000
committertron <tron>2014-08-22 15:25:10 +0000
commitc2850c25cd0a30e1cc951c24e5f991f2cca37d79 (patch)
tree86cf0eb5745d1c01adf8430e307e54537e171f99
parent8062411ae7df49c5e14ccaf772fc4b5cbe2b76ac (diff)
downloadpkgsrc-c2850c25cd0a30e1cc951c24e5f991f2cca37d79.tar.gz
Pullup ticket #4478 - requested by wiz
x11/gnome-desktop3: build fix Revisions pulled up: - x11/gnome-desktop3/distinfo 1.6 - x11/gnome-desktop3/patches/patch-libgnome-desktop_libgsystem_gsystem-file-utils.c 1.1 --- Module Name: pkgsrc Committed By: wiz Date: Thu Aug 21 10:37:48 UTC 2014 Modified Files: pkgsrc/x11/gnome-desktop3: distinfo Added Files: pkgsrc/x11/gnome-desktop3/patches: patch-libgnome-desktop_libgsystem_gsystem-file-utils.c Log Message: Add fcntl.h for openat(). Might help build on NetBSD-6.
-rw-r--r--x11/gnome-desktop3/distinfo3
-rw-r--r--x11/gnome-desktop3/patches/patch-libgnome-desktop_libgsystem_gsystem-file-utils.c15
2 files changed, 17 insertions, 1 deletions
diff --git a/x11/gnome-desktop3/distinfo b/x11/gnome-desktop3/distinfo
index 5f00f812728..e965fd3aa8b 100644
--- a/x11/gnome-desktop3/distinfo
+++ b/x11/gnome-desktop3/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.5 2014/02/12 01:23:33 prlw1 Exp $
+$NetBSD: distinfo,v 1.5.4.1 2014/08/22 15:25:10 tron Exp $
SHA1 (gnome-desktop-3.10.2.tar.xz) = fd13640ad7f096f29267366bcdf4cf8dc95af07a
RMD160 (gnome-desktop-3.10.2.tar.xz) = 9d59c58c497eafa75a5ae7a38edaa740c8c77726
Size (gnome-desktop-3.10.2.tar.xz) = 1062876 bytes
SHA1 (patch-aa) = 0553828a17b36a1a7ce2fb66ed1ae0ce6eaa8075
+SHA1 (patch-libgnome-desktop_libgsystem_gsystem-file-utils.c) = 9c015507b6ab5bb820651d326979e00f86c5a59f
diff --git a/x11/gnome-desktop3/patches/patch-libgnome-desktop_libgsystem_gsystem-file-utils.c b/x11/gnome-desktop3/patches/patch-libgnome-desktop_libgsystem_gsystem-file-utils.c
new file mode 100644
index 00000000000..198beb53201
--- /dev/null
+++ b/x11/gnome-desktop3/patches/patch-libgnome-desktop_libgsystem_gsystem-file-utils.c
@@ -0,0 +1,15 @@
+$NetBSD: patch-libgnome-desktop_libgsystem_gsystem-file-utils.c,v 1.1.2.2 2014/08/22 15:25:10 tron Exp $
+
+Add fcntl.h for openat().
+
+--- libgnome-desktop/libgsystem/gsystem-file-utils.c.orig 2013-10-04 22:18:43.000000000 +0000
++++ libgnome-desktop/libgsystem/gsystem-file-utils.c
+@@ -37,6 +37,8 @@
+ #include <glib-unix.h>
+ #include <limits.h>
+ #include <dirent.h>
++/* for openat() */
++#include <fcntl.h>
+
+ static int
+ close_nointr (int fd)