Module Name: src Committed By: wiz Date: Sat Nov 9 13:14:09 UTC 2024
Modified Files: src/external/bsd/tmux/usr.bin/tmux: Makefile Log Message: tmux: update for 3.5a release To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/external/bsd/tmux/usr.bin/tmux/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/bsd/tmux/usr.bin/tmux/Makefile diff -u src/external/bsd/tmux/usr.bin/tmux/Makefile:1.36 src/external/bsd/tmux/usr.bin/tmux/Makefile:1.37 --- src/external/bsd/tmux/usr.bin/tmux/Makefile:1.36 Sun Jun 23 06:27:38 2024 +++ src/external/bsd/tmux/usr.bin/tmux/Makefile Sat Nov 9 13:14:09 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2024/06/23 06:27:38 wiz Exp $ +# $NetBSD: Makefile,v 1.37 2024/11/09 13:14:09 wiz Exp $ .include <bsd.own.mk> @@ -169,7 +169,7 @@ CPPFLAGS+= -I${SRCDIR} -I${.CURDIR} # Would be nicer to stick this in a config.h file, but the upstream code # does not use one at this moment. -# HAVE_REALLOCARRAY, HAVE_TREE_H, HAVE_VIS added manually +# ENABLE_SIXEL, HAVE_REALLOCARRAY, HAVE_TREE_H, HAVE_VIS added manually # # HAVE_BSD_GETOPT: # Use the NetBSD libc getopt functions instead of the compat functions @@ -182,6 +182,7 @@ CPPFLAGS+= -I${SRCDIR} -I${.CURDIR} # We have a local patch that adapts the call to the NetBSD version, # so we don't need to use the compat code provided by tmux. CPPFLAGS+= \ +-DENABLE_SIXEL=1 \ -DHAVE_ASPRINTF=1 \ -DHAVE_B64_NTOP=1 \ -DHAVE_BITSTRING_H=1 \ @@ -192,7 +193,6 @@ CPPFLAGS+= \ -DHAVE_CURSES_H=1 \ -DHAVE_DAEMON=1 \ -DHAVE_DIRENT_H=1 \ --DENABLE_SIXEL=1 \ -DHAVE_EVENT2_EVENT_H=1 \ -DHAVE_FCNTL_CLOSEM=1 \ -DHAVE_FCNTL_H=1 \ @@ -239,18 +239,19 @@ CPPFLAGS+= \ -DPACKAGE=\"tmux\" \ -DPACKAGE_BUGREPORT=\"\" \ -DPACKAGE_NAME=\"tmux\" \ --DPACKAGE_STRING=\"tmux\ 3.4\" \ +-DPACKAGE_STRING=\"tmux\ 3.5a\" \ -DPACKAGE_TARNAME=\"tmux\" \ -DPACKAGE_URL=\"\" \ --DPACKAGE_VERSION=\"3.4\" \ +-DPACKAGE_VERSION=\"3.5a\" \ -DSTDC_HEADERS=1 \ -DTMUX_CONF='"/etc/tmux.conf:~/.tmux.conf:$XDG_CONFIG_HOME/tmux/tmux.conf:~/.config/tmux/tmux.conf"' \ -DTMUX_LOCK_CMD='"lock -np"' \ -DTMUX_TERM='"tmux-256color"' \ --DTMUX_VERSION='"3.4"' \ --DVERSION=\"3.4\" \ +-DTMUX_VERSION='"3.5a"' \ +-DVERSION=\"3.5a\" \ -D_ALL_SOURCE=1 \ -D_GNU_SOURCE=1 \ +-D_NETBSD_SOURCE \ -D_OPENBSD_SOURCE \ -D_POSIX_PTHREAD_SEMANTICS=1 \ -D_TANDEM_SOURCE=1 \