summaryrefslogtreecommitdiff
path: root/emulators/wine-devel/files
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@FreeBSD.org>2021-07-06 06:54:26 +0000
committerGerald Pfeifer <gerald@FreeBSD.org>2021-07-06 06:56:12 +0000
commite110b9ed9010df158dbb910dbca6b71bd97328c4 (patch)
tree91278fcb038371cfc39785aa2c245eb53abcec0b /emulators/wine-devel/files
parentdns/dnscontrol: Update to 3.10.1 (diff)
emulators/wine-devel: Update to Wine 6.12
This includes the following changes: - Builtin "Blue" and "Classic Blue" themes. - More work towards WinSock PE conversion. - Beginnings of the NSI (Network Store Interface) implementation. - Support for 32/64-bit registry views in reg.exe. - Various bug fixes. The Staging patch set is broken for this snapshot; mark the STAGING option broken accordingly. Add files/patch-nsiproxy.sys which addresses a build issue on non-Linux platforms that I pushed upstream in the meantime.
Diffstat (limited to 'emulators/wine-devel/files')
-rw-r--r--emulators/wine-devel/files/patch-nsiproxy.sys22
1 files changed, 22 insertions, 0 deletions
diff --git a/emulators/wine-devel/files/patch-nsiproxy.sys b/emulators/wine-devel/files/patch-nsiproxy.sys
new file mode 100644
index 000000000000..fa837bc5d5e5
--- /dev/null
+++ b/emulators/wine-devel/files/patch-nsiproxy.sys
@@ -0,0 +1,22 @@
+This patch of mine has been included upstream in the meantime.
+
+commit 1fc3d75a17b025bcdb818714db47a37c309ea186
+Author: Gerald Pfeifer <gerald@pfeifer.com>
+Date: Sat Jul 3 06:55:06 2021 +0000
+
+ nsiproxy: Include netinet/in.h before if_ether.h
+
+index 647fd650cd3..7a0e7ec6f6c 100644
+--- dlls/nsiproxy.sys/ndis.c
++++ dlls/nsiproxy.sys/ndis.c
+@@ -38,6 +38,10 @@
+ #include <net/if_arp.h>
+ #endif
+
++#ifdef HAVE_NETINET_IN_H
++#include <netinet/in.h>
++#endif
++
+ #ifdef HAVE_NETINET_IF_ETHER_H
+ #include <netinet/if_ether.h>
+ #endif