1
0
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:
Wen Heping 2010-12-22 01:38:53 +00:00
parent 215977f6ef
commit 78f352b18e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=266712
4 changed files with 24 additions and 1 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= tmux
PORTVERSION= 1.3
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}

View File

@ -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

View 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

View 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) {