summaryrefslogtreecommitdiff
path: root/emulators/wine-devel/files/patch-dlls-nsiproxy.sys
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@FreeBSD.org>2021-09-16 21:54:47 +0000
committerGerald Pfeifer <gerald@FreeBSD.org>2021-09-16 21:57:50 +0000
commita02e3c6686d68350132a88379fc3d99445b9b80d (patch)
tree8e4f9dd021045358f5cf2ca7d9b68b3bbc44d20a /emulators/wine-devel/files/patch-dlls-nsiproxy.sys
parentgraphics/libcdr01: remove staled patch after 7e9b8f8afae0 (diff)
emulators/wine-devel: Update to Wine 6.17
This includes the following changes: - WineCfg program converted to PE. - Better high-DPI support in builtin applications. - More preparation work for the GDI syscall interface. - Improved debugger support in Wow64 mode. - Various bug fixes. My patch files/patch-dlls-nsiproxy.sys has been accepted upstream, so remove it on our end. Work around FreeBSD calling x86-64 by the name of amd64 and the Ports Collection using this in a variable ARCH, which interferes with Wine's variable of the same name and messes things up badly. I have hope to be able to upstream files/patch-amd64-vs-x86-64. [1] PR: 257020 [1] Inspired by: Ivan Rozhuk <rozhuk.im@gmail.com> [1]
Diffstat (limited to 'emulators/wine-devel/files/patch-dlls-nsiproxy.sys')
-rw-r--r--emulators/wine-devel/files/patch-dlls-nsiproxy.sys31
1 files changed, 0 insertions, 31 deletions
diff --git a/emulators/wine-devel/files/patch-dlls-nsiproxy.sys b/emulators/wine-devel/files/patch-dlls-nsiproxy.sys
deleted file mode 100644
index 73c77e1aee35..000000000000
--- a/emulators/wine-devel/files/patch-dlls-nsiproxy.sys
+++ /dev/null
@@ -1,31 +0,0 @@
-Yet another recent breakage in dlls/nsiproxy.sys, yet another patch
-submitted upstream.
-
-Plus I've adjusted my autobuilders to focus on newer versions of FreeBSD.
-
-
-commit cd10f9b73cdae715e4a1ef32ade50c65a097ebf1
-Author: Gerald Pfeifer <gerald@FreeBSD.org>
-Date: Mon Sep 6 17:54:53 2021 +0000
-
- nsiproxy: Include sys/param.h from udp.c.
-
- udp.c features specific code to handle versions of FreeBSD past early
- 12.0 snapshots. This is guarded by a check on __FreeBSD_version which
- is defined in sys/param.h. Actually including that, like tcp.c already
- does, activates that check and adjusted code and unbreaks the build.
-
---- UTC
---- dlls/nsiproxy.sys/udp.c
-+++ dlls/nsiproxy.sys/udp.c
-@@ -22,6 +22,10 @@
- #include <stdarg.h>
- #include <stddef.h>
-
-+#ifdef HAVE_SYS_PARAM_H
-+#include <sys/param.h>
-+#endif
-+
- #ifdef HAVE_SYS_TYPES_H
- #include <sys/types.h>
- #endif