diff options
author | hasso <hasso@pkgsrc.org> | 2009-09-25 16:38:22 +0000 |
---|---|---|
committer | hasso <hasso@pkgsrc.org> | 2009-09-25 16:38:22 +0000 |
commit | b186be276f1f031fc1b0f7439cb11ead21e2bb78 (patch) | |
tree | d7435b9e36a3dc6bf3809e672ce5db2bc9198a93 /misc | |
parent | 4b07cbd00fc9796debfcf34e562af1f6fdbe7a3b (diff) | |
download | pkgsrc-b186be276f1f031fc1b0f7439cb11ead21e2bb78.tar.gz |
Fix build on NetBSD (from fulvio ciriaco).
Diffstat (limited to 'misc')
-rw-r--r-- | misc/tmux/distinfo | 4 | ||||
-rw-r--r-- | misc/tmux/patches/patch-ac | 13 | ||||
-rw-r--r-- | misc/tmux/patches/patch-ad | 13 |
3 files changed, 29 insertions, 1 deletions
diff --git a/misc/tmux/distinfo b/misc/tmux/distinfo index bc77200343a..3cc9c7976d6 100644 --- a/misc/tmux/distinfo +++ b/misc/tmux/distinfo @@ -1,7 +1,9 @@ -$NetBSD: distinfo,v 1.7 2009/09/21 10:55:35 hasso Exp $ +$NetBSD: distinfo,v 1.8 2009/09/25 16:38:22 hasso Exp $ SHA1 (tmux-1.0.tar.gz) = 62bbea17e54cdacb48442e25eddf0463ab69ba61 RMD160 (tmux-1.0.tar.gz) = 3176447bf21dd1d5559d256ee3786d13771c20af Size (tmux-1.0.tar.gz) = 215329 bytes SHA1 (patch-aa) = e50976effc9fa43044d45055aabd86a69d9d9047 SHA1 (patch-ab) = 0f701c350d26b2b14c230f148ea141ecafec6c6d +SHA1 (patch-ac) = e308390602756b03197715de648710ea6441f348 +SHA1 (patch-ad) = 1f325dcb1fdaed1e5c502edd3622189407754571 diff --git a/misc/tmux/patches/patch-ac b/misc/tmux/patches/patch-ac new file mode 100644 index 00000000000..7f365312add --- /dev/null +++ b/misc/tmux/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.5 2009/09/25 16:38:22 hasso Exp $ + +--- tty-term.c.orig 2009-09-24 15:58:21.000000000 +0200 ++++ tty-term.c +@@ -18,7 +18,7 @@ + + #include <sys/types.h> + +-#include <curses.h> ++#include <ncurses.h> + #include <fnmatch.h> + #include <stdlib.h> + #include <string.h> diff --git a/misc/tmux/patches/patch-ad b/misc/tmux/patches/patch-ad new file mode 100644 index 00000000000..7ac5df88a14 --- /dev/null +++ b/misc/tmux/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.3 2009/09/25 16:38:22 hasso Exp $ + +--- osdep-netbsd.c.orig 2009-09-24 15:58:45.000000000 +0200 ++++ osdep-netbsd.c +@@ -77,7 +77,7 @@ osdep_get_name(int fd, __unused char *tt + return (NULL); + + buf = NULL; +- len = sizeof(p); ++ len = sizeof(bestp); + mib[0] = CTL_KERN; + mib[1] = KERN_PROC2; + mib[2] = KERN_PROC_PGRP; |