mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-18 00:10:04 +00:00
net/tigervnc-*: Update to 1.14.1
Changes: https://github.com/TigerVNC/tigervnc/releases/tag/v1.14.1
This commit is contained in:
parent
8b02262fa4
commit
15992b14fc
@ -1,6 +1,6 @@
|
||||
PORTNAME= tigervnc
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.14.0
|
||||
DISTVERSION= 1.14.1
|
||||
CATEGORIES= net x11-servers
|
||||
|
||||
MAINTAINER?= meta@FreeBSD.org
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1722387402
|
||||
SHA256 (TigerVNC-tigervnc-v1.14.0_GH0.tar.gz) = 5700f9919802a2f0529cc058b8caded03281cdbf0335581f2dcc7df03f783419
|
||||
SIZE (TigerVNC-tigervnc-v1.14.0_GH0.tar.gz) = 2090452
|
||||
TIMESTAMP = 1729829981
|
||||
SHA256 (TigerVNC-tigervnc-v1.14.1_GH0.tar.gz) = 579d0d04eb5b806d240e99a3c756b38936859e6f7db2f4af0d5656cc9a989d7c
|
||||
SIZE (TigerVNC-tigervnc-v1.14.1_GH0.tar.gz) = 2097932
|
||||
|
@ -1,15 +0,0 @@
|
||||
--- common/rfb/ZRLEDecoder.cxx.orig 2024-07-23 08:50:25 UTC
|
||||
+++ common/rfb/ZRLEDecoder.cxx
|
||||
@@ -126,10 +126,10 @@ void ZRLEDecoder::zrleDecode(const Rect& r, rdr::InStr
|
||||
Pixel maxPixel = pf.pixelFromRGB((uint16_t)-1, (uint16_t)-1, (uint16_t)-1);
|
||||
bool fitsInLS3Bytes = maxPixel < (1<<24);
|
||||
bool fitsInMS3Bytes = (maxPixel & 0xff) == 0;
|
||||
- bool isLowCPixel = (sizeof(T) == 4) &&
|
||||
+ bool isLowCPixel = (sizeof(T) == 4) && (pf.depth <= 24) &&
|
||||
((fitsInLS3Bytes && pf.isLittleEndian()) ||
|
||||
(fitsInMS3Bytes && pf.isBigEndian()));
|
||||
- bool isHighCPixel = (sizeof(T) == 4) &&
|
||||
+ bool isHighCPixel = (sizeof(T) == 4) && (pf.depth <= 24) &&
|
||||
((fitsInLS3Bytes && pf.isBigEndian()) ||
|
||||
(fitsInMS3Bytes && pf.isLittleEndian()));
|
||||
|
@ -1,6 +1,5 @@
|
||||
PKGNAMESUFFIX= -viewer
|
||||
CATEGORIES= net
|
||||
PORTREVISION= 1
|
||||
|
||||
COMMENT= TigerVNC Viewer
|
||||
WWW= https://tigervnc.org/
|
||||
|
Loading…
Reference in New Issue
Block a user