Disable emulation-attributes-bce on tmux 3.3a

tmux 3.3a has a behavior change, since reverted, that is incompatible
with this test. Unfortunately, tmux 3.3a has already made it into some
distributions, so the test has to be disabled when tmux 3.3a is encountered.
This commit is contained in:
Alex Chernyakhovsky
2022-10-26 18:18:39 -04:00
committed by Benjamin Barenblat
parent f3665fb99b
commit 68226283cb
2 changed files with 22 additions and 4 deletions
+14 -4
View File
@@ -81,6 +81,19 @@ set_locale()
return 1
}
# Given two versions, return success if the first version is less than
# or equal to the second version.
versionlte()
{
[ "$1" = "$(printf "$1\n$2\n" | sort -V | head -n1)" ]
}
versionlt() {
if [ "$1" = "$2" ]; then
return 1
fi
versionlte "$1" "$2"
}
# Tmux check.
tmux_check()
{
@@ -103,11 +116,8 @@ tmux_check()
return 0
fi
version=${version##tmux }
version_major=${version%%.*}
version_minor=${version##*.}
if [ "$version_major" -lt "$need_major" ] ||
{ [ "$version_major" -eq "$need_major" ] && [ "$version_minor" -lt "$need_minor" ]; }; then
if versionlt "$version" "$need_major.$need_minor"; then
printf "tmux version %s too old\n" "$version" >&2
return 1
fi