diff --git a/sysutils/tmux/Portfile b/sysutils/tmux/Portfile
a
|
b
|
|
6 | 6 | |
7 | 7 | github.setup tmux tmux 2.2 |
8 | 8 | if {${subport} eq ${name}} { |
9 | | revision 0 |
| 9 | revision 1 |
10 | 10 | conflicts tmux-devel |
11 | 11 | } |
12 | 12 | subport tmux-devel { |
… |
… |
|
33 | 33 | github.tarball_from releases |
34 | 34 | checksums rmd160 5d636bb7a4c5d80e2dba4179ddd65bc49f471e37 \ |
35 | 35 | sha256 bc28541b64f99929fe8e3ae7a02291263f3c97730781201824c0f05d7c8e19e4 |
| 36 | patchfiles patch-osdep-event-init.diff |
36 | 37 | } |
37 | 38 | subport tmux-devel { |
38 | 39 | checksums rmd160 941bb491c7e40ab1ff44306fbb1144bdde30de9b \ |
diff --git a/sysutils/tmux/files/patch-osdep-event-init.diff b/sysutils/tmux/files/patch-osdep-event-init.diff
new file mode 100644
-
|
+
|
|
| 1 | --- tmux.c |
| 2 | +++ tmux.c |
| 3 | @@ -338,5 +338,5 @@ |
| 4 | free(label); |
| 5 | |
| 6 | /* Pass control to the client. */ |
| 7 | - exit(client_main(event_init(), argc, argv, flags, shellcmd)); |
| 8 | + exit(client_main(osdep_event_init(), argc, argv, flags, shellcmd)); |
| 9 | } |