Update to Wine 5.13. This includes the following changes:

- Re-mapping of INI files to the registry.
 - System call thunks in NTDLL.
 - Reimplementation of floating point numbers printing.
 - Beginnings of a restructuration of the console support.
 - Various bug fixes.

A build error got in upstream the day this snapshot was created;
temporarily address this via files/patch-dlls-ntdll-unix-registry.c
which I alreadly submitted upstream.

(The Wine Staging patchset isn't yet available. No change on that
front yet - it was marked BROKEN anyway.)
This commit is contained in:
Gerald Pfeifer 2020-07-18 10:46:38 +00:00
parent 81048ad516
commit feacd0a65f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=542489
4 changed files with 48 additions and 6 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= wine
DISTVERSION= 5.12
DISTVERSION= 5.13
PORTEPOCH= 1
CATEGORIES= emulators
MASTER_SITES= SF/${PORTNAME}/Source \

View File

@ -1,5 +1,3 @@
TIMESTAMP = 1593937189
SHA256 (wine-5.12.tar.xz) = 87f17254c6794ec6eeb7020b164c859983c9df0dacdd66d6449ff000498c842e
SIZE (wine-5.12.tar.xz) = 23939672
SHA256 (v5.12.tar.gz) = 65d710eb309f9a240d5c406e13f37470e363917e2292f095c6c7ed030aa9d592
SIZE (v5.12.tar.gz) = 9834148
TIMESTAMP = 1595061543
SHA256 (wine-5.13.tar.xz) = c46a5c1c2aaf41993de5a5e78b7780060e0e77066531d0ca672ae08e325e0152
SIZE (wine-5.13.tar.xz) = 23955832

View File

@ -0,0 +1,42 @@
From: Gerald Pfeifer <gerald@pfeifer.com>
To: wine-devel@winehq.org
Date: Sat, 18 Jul 2020 12:02:58 +0300 (EEST)
Subject: [PATCH] ntdll: Include <signal.h> for sigset_t
commit 7053b7c615b44e7112ab8fb4c056206d32b6f1c9
Author: Alexandre Julliard <julliard@winehq.org>
Date: Fri Jul 17 11:46:15 2020 +0200
ntdll: Move the registry system calls to the Unix library.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
broke non-Linux platforms since sigset_t isn't necessarily defined
based on the #include statements in the new dlls/ntdll/unix/registry.c.
This fixes it.
Observed and tested on FreeBSD 11.4/i386.
Gerald
Signed-off-by: Gerald Pfeifer <gerald@pfeifer.com>
---
dlls/ntdll/unix/registry.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/dlls/ntdll/unix/registry.c b/dlls/ntdll/unix/registry.c
index f94c8ff98e..6d58361818 100644
--- dlls/ntdll/unix/registry.c
+++ dlls/ntdll/unix/registry.c
@@ -25,6 +25,7 @@
#pragma makedep unix
#endif
+#include <signal.h>
#include <stdarg.h>
#include <string.h>
--
2.27.0

View File

@ -1187,6 +1187,7 @@ lib/wine/api-ms-win-core-synch-l1-2-1.dll.so
lib/wine/api-ms-win-core-sysinfo-l1-1-0.dll.so
lib/wine/api-ms-win-core-sysinfo-l1-2-0.dll.so
lib/wine/api-ms-win-core-sysinfo-l1-2-1.dll.so
lib/wine/api-ms-win-core-systemtopology-l1-1-0.dll.so
lib/wine/api-ms-win-core-threadpool-l1-1-0.dll.so
lib/wine/api-ms-win-core-threadpool-l1-2-0.dll.so
lib/wine/api-ms-win-core-threadpool-legacy-l1-1-0.dll.so
@ -1648,6 +1649,7 @@ lib/wine/fakedlls/api-ms-win-core-synch-l1-2-1.dll
lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-1-0.dll
lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-0.dll
lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-1.dll
lib/wine/fakedlls/api-ms-win-core-systemtopology-l1-1-0.dll
lib/wine/fakedlls/api-ms-win-core-threadpool-l1-1-0.dll
lib/wine/fakedlls/api-ms-win-core-threadpool-l1-2-0.dll
lib/wine/fakedlls/api-ms-win-core-threadpool-legacy-l1-1-0.dll