diff options
author | cube <cube@pkgsrc.org> | 2003-12-18 09:08:44 +0000 |
---|---|---|
committer | cube <cube@pkgsrc.org> | 2003-12-18 09:08:44 +0000 |
commit | 7af095f5cfd468c5221dbd8a239a425e9caca6ca (patch) | |
tree | 9f4e863ebbda310a6cfa53888166404b6010f9bf | |
parent | 037c716d7cac07705bcf454637468957ce55c512 (diff) | |
download | pkgsrc-7af095f5cfd468c5221dbd8a239a425e9caca6ca.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.
-rw-r--r-- | x11/vte/distinfo | 3 | ||||
-rw-r--r-- | x11/vte/patches/patch-ad | 14 |
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> |