freerdp3: update to 3.14.0

This commit is contained in:
chrysos349 2025-03-22 13:27:18 +03:00 committed by Andrew Benson
parent 675669ae0e
commit b21c286750
2 changed files with 2 additions and 25 deletions

View file

@ -1,23 +0,0 @@
From 38aebbca64e68c729d07b09bf62af405e87db144 Mon Sep 17 00:00:00 2001
From: fossdd <fossdd@pwned.life>
Date: Fri, 7 Feb 2025 19:12:04 +0100
Subject: [PATCH] [client,common] Avoid use of reserved types
__off_t is a internal type of glibc and does not exist on other libc's.
---
client/common/client_cliprdr_file.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/client/common/client_cliprdr_file.c b/client/common/client_cliprdr_file.c
index f1f220e528a4..e895f8b5684c 100644
--- a/client/common/client_cliprdr_file.c
+++ b/client/common/client_cliprdr_file.c
@@ -775,7 +775,7 @@ static void write_file_attributes(CliprdrFuseFile* fuse_file, struct stat* attr)
{
attr->st_mode = S_IFREG | (fuse_file->is_readonly ? 0444 : 0644);
attr->st_nlink = 1;
- attr->st_size = WINPR_ASSERTING_INT_CAST(__off_t, fuse_file->size);
+ attr->st_size = WINPR_ASSERTING_INT_CAST(off_t, fuse_file->size);
}
attr->st_uid = getuid();
attr->st_gid = getgid();

View file

@ -1,6 +1,6 @@
# Template file for 'freerdp3'
pkgname=freerdp3
version=3.11.1
version=3.14.0
revision=1
build_style=cmake
build_helper=qemu
@ -41,7 +41,7 @@ license="Apache-2.0"
homepage="https://www.freerdp.com/"
changelog="https://raw.githubusercontent.com/FreeRDP/FreeRDP/master/ChangeLog"
distfiles="https://github.com/FreeRDP/FreeRDP/archive/${version}.tar.gz"
checksum=8259f5d713b4a35fdcca867aae7ba352109063ec6b4c21ee3e6144486a9dfa97
checksum=a7a979382703c2bc18aa9b22cfa12d7a441b6927ab45ac62ef8353786bc92241
# wayland - deprecated, sdl2 - experimental
build_options="aad ffmpeg sdl2 smartcard wayland webview"