summaryrefslogtreecommitdiff
path: root/emulators/wine-devel/files
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@FreeBSD.org>2021-08-31 07:10:58 +0000
committerGerald Pfeifer <gerald@FreeBSD.org>2021-08-31 07:11:18 +0000
commit4e8baba14a51d58726d97b51d48297a27c812304 (patch)
treebb94e73377effeec97f45b2205f23fbd109b3f41 /emulators/wine-devel/files
parentsysutils/dcfldd: correct USE_GITHUB usage and minor style bugfixes. (diff)
emulators/wine-devel: Update to Wine 6.16
This includes the following changes: - Initial version of a HID-based joystick backend. - Improved high-DPI theming support. - More preparation work for the GDI syscall interface. - Better CodeView support in WineDump. - Various bug fixes. It also addresses a couple of FreeBSD-specific build issues I had to address due to system headers not including others actually required: nsiproxy: Include sys/param.h. nsiproxy: Include netinet/in_pcb.h. nsiproxy: Include stddef.h. ntdll: Always return a value in get_builtin_init_funcs. nsiproxy: Include sys/types.h from udp.c. nsiproxy: Add $(PROCSTAT_LIBS) to EXTRALIBS. nsiproxy: Include netinet/in.h in udp.c. nsiproxy: Include sys/queue.h from tcp.c. My patch files/patch-dlls-nsiproxy.sys has been integrated upstream, so remove it here.
Diffstat (limited to 'emulators/wine-devel/files')
-rw-r--r--emulators/wine-devel/files/patch-dlls-nsiproxy.sys37
1 files changed, 0 insertions, 37 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 c73499fa7810..000000000000
--- a/emulators/wine-devel/files/patch-dlls-nsiproxy.sys
+++ /dev/null
@@ -1,37 +0,0 @@
-This patch of mine has been accepted upstream already.
-
-commit a1cc71207cd22d7d884f44d135d975d981fa21e6
-Author: Gerald Pfeifer <gerald@pfeifer.com>
-Date: Tue Aug 24 14:53:47 2021 +0200
-
- nsiproxy: Include sys/queue.h from tcp.c.
-
- In what looks like a change between FreeBSD 11 and later versions
- (FreeBSD 12 and 13), we now need to explicitly include sys/queue.h
- to avoid
-
- In file included from dlls/nsiproxy.sys/tcp.c:42:
- /usr/include/netinet/tcp_var.h:516:2: error:
- expected specifier-qualifier-list before 'TAILQ_ENTRY'
- 516 | TAILQ_ENTRY(tcptw) tw_2msl;
-
- Signed-off-by: Gerald Pfeifer <gerald@pfeifer.com>
- Signed-off-by: Huw Davies <huw@codeweavers.com>
- Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
---- UTC
-diff --git dlls/nsiproxy.sys/tcp.c dlls/nsiproxy.sys/tcp.c
-index 8567330be99..603aefadfe9 100644
---- dlls/nsiproxy.sys/tcp.c
-+++ dlls/nsiproxy.sys/tcp.c
-@@ -58,6 +58,10 @@
- #include <netinet/ip_var.h>
- #endif
-
-+#ifdef HAVE_SYS_QUEUE_H
-+#include <sys/queue.h>
-+#endif
-+
- #ifdef HAVE_NETINET_TCP_VAR_H
- #include <netinet/tcp_var.h>
- #endif