Thu Nov 29 10:51:34 2018 UTC ()
tmux: Add reference to upstream pull request

(It is now applied so the patch will be no longer needed in the
next stable version!)


(leot)
diff -r1.38 -r1.39 pkgsrc/misc/tmux/distinfo
diff -r1.1 -r1.2 pkgsrc/misc/tmux/patches/patch-osdep-netbsd.c

cvs diff -r1.38 -r1.39 pkgsrc/misc/tmux/distinfo (expand / switch to unified diff)

--- pkgsrc/misc/tmux/distinfo 2018/11/28 14:45:19 1.38
+++ pkgsrc/misc/tmux/distinfo 2018/11/29 10:51:34 1.39
@@ -1,9 +1,9 @@ @@ -1,9 +1,9 @@
1$NetBSD: distinfo,v 1.38 2018/11/28 14:45:19 leot Exp $ 1$NetBSD: distinfo,v 1.39 2018/11/29 10:51:34 leot Exp $
2 2
3SHA1 (tmux-2.8.tar.gz) = 6a469769a242c95dc8aec443b436d4f8f279f517 3SHA1 (tmux-2.8.tar.gz) = 6a469769a242c95dc8aec443b436d4f8f279f517
4RMD160 (tmux-2.8.tar.gz) = 13f097f02b2d3f489fb00af5b3f702cb2eae523f 4RMD160 (tmux-2.8.tar.gz) = 13f097f02b2d3f489fb00af5b3f702cb2eae523f
5SHA512 (tmux-2.8.tar.gz) = e382aec122a10624953432b3c869b21d69390bc2e7d459440a46950802e39503eafb398178f8085191261925e4f0872bb99b19e0403e7beb56d3ceecc4c86b09 5SHA512 (tmux-2.8.tar.gz) = e382aec122a10624953432b3c869b21d69390bc2e7d459440a46950802e39503eafb398178f8085191261925e4f0872bb99b19e0403e7beb56d3ceecc4c86b09
6Size (tmux-2.8.tar.gz) = 491195 bytes 6Size (tmux-2.8.tar.gz) = 491195 bytes
7SHA1 (patch-Makefile.in) = dc8a351b06bf2f9f96b3dc4d944a174ef3c8d9db 7SHA1 (patch-Makefile.in) = dc8a351b06bf2f9f96b3dc4d944a174ef3c8d9db
8SHA1 (patch-osdep-netbsd.c) = 81d0bf9275c0c12d4f0f2adc07136e3d8948137d 8SHA1 (patch-osdep-netbsd.c) = 9b4859afed8524cb1966fb473cf49bb576e02885
9SHA1 (patch-tty-term.c) = 20bf235e61e6650bec3e7e94ea79859898039eba 9SHA1 (patch-tty-term.c) = 20bf235e61e6650bec3e7e94ea79859898039eba

cvs diff -r1.1 -r1.2 pkgsrc/misc/tmux/patches/Attic/patch-osdep-netbsd.c (expand / switch to unified diff)

--- pkgsrc/misc/tmux/patches/Attic/patch-osdep-netbsd.c 2018/11/28 14:45:19 1.1
+++ pkgsrc/misc/tmux/patches/Attic/patch-osdep-netbsd.c 2018/11/29 10:51:34 1.2
@@ -1,17 +1,21 @@ @@ -1,17 +1,21 @@
1$NetBSD: patch-osdep-netbsd.c,v 1.1 2018/11/28 14:45:19 leot Exp $ 1$NetBSD: patch-osdep-netbsd.c,v 1.2 2018/11/29 10:51:34 leot Exp $
2 2
3Implement osdep_get_cwd() via mount_procfs(8) (inspired by osdep-sunos.c). 3Implement osdep_get_cwd() via mount_procfs(8) (inspired by osdep-sunos.c).
4 4
 5This was applied upstream via:
 6
 7 <https://github.com/tmux/tmux/pull/1556>
 8
5--- osdep-netbsd.c.orig 2016-01-21 00:00:28.000000000 +0000 9--- osdep-netbsd.c.orig 2016-01-21 00:00:28.000000000 +0000
6+++ osdep-netbsd.c 10+++ osdep-netbsd.c
7@@ -23,10 +23,13 @@ 11@@ -23,10 +23,13 @@
8  12
9 #include <errno.h> 13 #include <errno.h>
10 #include <event.h> 14 #include <event.h>
11+#include <limits.h> 15+#include <limits.h>
12 #include <stdlib.h> 16 #include <stdlib.h>
13 #include <string.h> 17 #include <string.h>
14 #include <unistd.h> 18 #include <unistd.h>
15  19
16+#include "tmux.h" 20+#include "tmux.h"
17+ 21+