summaryrefslogtreecommitdiff
path: root/x11/vte
diff options
context:
space:
mode:
authorcube <cube>2003-12-18 09:08:44 +0000
committercube <cube>2003-12-18 09:08:44 +0000
commit1446e640b64cb5398349636472ca9eec2dd0bc25 (patch)
tree9f4e863ebbda310a6cfa53888166404b6010f9bf /x11/vte
parent484c816eb319e26ad52514d2174bb5beb67de6a2 (diff)
downloadpkgsrc-1446e640b64cb5398349636472ca9eec2dd0bc25.tar.gz
Move inclusion of <sys/select.h> after <sys/types.h> in src/dumpkeys.c.
That fixes the build on my 1.6.2_RC2 box.
Diffstat (limited to 'x11/vte')
-rw-r--r--x11/vte/distinfo3
-rw-r--r--x11/vte/patches/patch-ad14
2 files changed, 16 insertions, 1 deletions
diff --git a/x11/vte/distinfo b/x11/vte/distinfo
index 233e9bf627b..b91c78eb027 100644
--- a/x11/vte/distinfo
+++ b/x11/vte/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.1.1.1 2003/12/13 17:54:14 xtraeme Exp $
+$NetBSD: distinfo,v 1.2 2003/12/18 09:08:44 cube Exp $
SHA1 (vte-0.11.10.tar.bz2) = 10fb64a786e925b45aa7c919595212d56441dd23
Size (vte-0.11.10.tar.bz2) = 855466 bytes
SHA1 (patch-aa) = 9b4961c056c3bf46332490fc7f30ff3540f2dbd3
SHA1 (patch-ab) = 8c9c3189b53a87aa198fcb8b11f43a9aa5255eaf
SHA1 (patch-ac) = 3b357bf9d1bca93c24f5b09dae1adec82323be0d
+SHA1 (patch-ad) = 6afc6ed139346d5e7effeb07c0f3e84c3e772d77
diff --git a/x11/vte/patches/patch-ad b/x11/vte/patches/patch-ad
new file mode 100644
index 00000000000..1b455476006
--- /dev/null
+++ b/x11/vte/patches/patch-ad
@@ -0,0 +1,14 @@
+$NetBSD: patch-ad,v 1.1 2003/12/18 09:08:44 cube Exp $
+
+--- src/dumpkeys.c.orig Thu Apr 24 04:50:54 2003
++++ src/dumpkeys.c
+@@ -20,2 +20,4 @@
+ #include "../config.h"
++#include <sys/time.h>
++#include <sys/types.h>
+ #ifdef HAVE_SYS_SELECT_H
+@@ -23,4 +25,2 @@
+ #endif
+-#include <sys/time.h>
+-#include <sys/types.h>
+ #include <unistd.h>