diff options
author | Matthias Andree <mandree@FreeBSD.org> | 2023-08-03 22:24:57 +0000 |
---|---|---|
committer | Matthias Andree <mandree@FreeBSD.org> | 2023-08-03 22:24:57 +0000 |
commit | a8dea6af5a811ab5a50284d6190fa877e1099b39 (patch) | |
tree | 0317c30ac5fe49db781d2e68305335173d344500 | |
parent | 999d93d0e2731c15645a6c6385a526e94452a9be (diff) | |
download | ports-a8dea6af5a811ab5a50284d6190fa877e1099b39.tar.gz ports-a8dea6af5a811ab5a50284d6190fa877e1099b39.zip |
sysutils/tmux: unbreak UTF8PROC on FreeBSD 14-CURRENT
...and set UTF8PROC_USES=localbase. On FreeBSD 13 and older,
the utf8proc version works without because we have USES=ncurses,
which pulls in the localbase equivalent through
ports/Mk/Uses/ncurses.mk. FreeBSD 14 builds use base ncurses instead,
so we need to make localbase explicit for utf8proc.
No PORTREVISION bump required because we would not have packages
to flush out.
Reported by: diizzy@
Approved by: portmgr@ (blanket)
-rw-r--r-- | sysutils/tmux/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysutils/tmux/Makefile b/sysutils/tmux/Makefile index ad6a518b40f4..a392d655274b 100644 --- a/sysutils/tmux/Makefile +++ b/sysutils/tmux/Makefile @@ -40,6 +40,7 @@ OPTIONS_DEFINE= DOCS EXAMPLES LIBEVENT_STATIC UTF8PROC LIBEVENT_STATIC_DESC= Build with static libevent UTF8PROC_DESC= Build with utf8proc support +UTF8PROC_USES= localbase LIBEVENT_STATIC_BUILD_DEPENDS= ${LOCALBASE}/lib/libevent.a:devel/libevent LIBEVENT_STATIC_LIB_DEPENDS_OFF= libevent.so:devel/libevent |