mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
- Force using kqueue since FreeBSD 6.x is now EOL [1]
- Fix urgent signal for window manager [2] - Remove MD5 [2] PR: ports/152765 [1] ports/153348 [2] Submitted by: Mark Felder <feld@feld.me> [1] Renato Botelho <garga@FreeBSD.org> [2]
This commit is contained in:
parent
215977f6ef
commit
78f352b18e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=266712
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= tmux
|
||||
PORTVERSION= 1.3
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
||||
|
||||
|
@ -1,3 +1,2 @@
|
||||
MD5 (tmux-1.3.tar.gz) = 96e60cb206de2db0610b9fb6a64c2251
|
||||
SHA256 (tmux-1.3.tar.gz) = 72c2d6f1c30fb4ccbd29b530a7d8a08e67c9c2d87ac8d67e3806561670fc0362
|
||||
SIZE (tmux-1.3.tar.gz) = 251999
|
||||
|
10
sysutils/tmux/files/patch-configure
Normal file
10
sysutils/tmux/files/patch-configure
Normal file
@ -0,0 +1,10 @@
|
||||
--- configure.orig 2010-12-22 09:03:15.000000000 +0800
|
||||
+++ configure 2010-12-22 09:03:49.000000000 +0800
|
||||
@@ -208,7 +208,6 @@
|
||||
FreeBSD|DragonFly)
|
||||
cat <<EOF >>$CONFIG_H
|
||||
#define HAVE_ASPRINTF
|
||||
-#define HAVE_BROKEN_KQUEUE
|
||||
#define HAVE_BZERO
|
||||
#define HAVE_DAEMON
|
||||
#define HAVE_FGETLN
|
13
sysutils/tmux/files/patch_server-window.c
Normal file
13
sysutils/tmux/files/patch_server-window.c
Normal file
@ -0,0 +1,13 @@
|
||||
@@ -109,10 +109,8 @@
|
||||
|
||||
if (!(w->flags & WINDOW_BELL) || wl->flags & WINLINK_BELL)
|
||||
return (0);
|
||||
- if (s->curw == wl)
|
||||
- return (0);
|
||||
-
|
||||
- wl->flags |= WINLINK_BELL;
|
||||
+ if (s->curw != wl)
|
||||
+ wl->flags |= WINLINK_BELL;
|
||||
|
||||
action = options_get_number(&s->options, "bell-action");
|
||||
switch (action) {
|
Loading…
Reference in New Issue
Block a user