summaryrefslogtreecommitdiff
path: root/emulators/wine-devel/patches
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2009-02-19 19:26:17 +0000
committeradam <adam@pkgsrc.org>2009-02-19 19:26:17 +0000
commitd10bc269fa2652b3dd7a0a9fd7cbab442c32d2be (patch)
tree063b1e926f2a292f7c68c163d02ee2768a5b77cc /emulators/wine-devel/patches
parentd717d4bb97cc12e16fffd24f04dbae0ca3a9c7b3 (diff)
downloadpkgsrc-d10bc269fa2652b3dd7a0a9fd7cbab442c32d2be.tar.gz
Changes 1.1.15:
* Gecko engine update. * Better region support in GdiPlus. * Support for cross-compilation in winegcc. * Beginnings of MS Text Framework support. * Many fixes to the regression tests on Windows. * Various bug fixes.
Diffstat (limited to 'emulators/wine-devel/patches')
-rw-r--r--emulators/wine-devel/patches/patch-ad18
-rw-r--r--emulators/wine-devel/patches/patch-ba14
2 files changed, 20 insertions, 12 deletions
diff --git a/emulators/wine-devel/patches/patch-ad b/emulators/wine-devel/patches/patch-ad
index 437e4a3f875..6c20daea61e 100644
--- a/emulators/wine-devel/patches/patch-ad
+++ b/emulators/wine-devel/patches/patch-ad
@@ -1,6 +1,6 @@
-$NetBSD: patch-ad,v 1.3 2009/01/30 19:39:04 adam Exp $
+$NetBSD: patch-ad,v 1.4 2009/02/19 19:26:17 adam Exp $
---- dlls/iphlpapi/ipstats.c.orig 2009-01-30 17:54:01.000000000 +0100
+--- dlls/iphlpapi/ipstats.c.orig 2009-02-13 18:01:33.000000000 +0100
+++ dlls/iphlpapi/ipstats.c
@@ -28,6 +28,10 @@
#include <stdlib.h>
@@ -22,7 +22,7 @@ $NetBSD: patch-ad,v 1.3 2009/01/30 19:39:04 adam Exp $
int mib[] = {CTL_NET, PF_INET, IPPROTO_ICMP, ICMPCTL_STATS};
#define MIB_LEN (sizeof(mib) / sizeof(mib[0]))
size_t needed;
-@@ -479,7 +483,7 @@ DWORD getICMPStats(MIB_ICMP *stats)
+@@ -483,7 +487,7 @@ DWORD getICMPStats(MIB_ICMP *stats)
DWORD getIPStats(PMIB_IPSTATS stats)
{
@@ -31,7 +31,7 @@ $NetBSD: patch-ad,v 1.3 2009/01/30 19:39:04 adam Exp $
int mib[] = {CTL_NET, PF_INET, IPPROTO_IP, IPCTL_STATS};
#define MIB_LEN (sizeof(mib) / sizeof(mib[0]))
int ip_ttl, ip_forwarding;
-@@ -648,7 +652,7 @@ DWORD getIPStats(PMIB_IPSTATS stats)
+@@ -652,7 +656,7 @@ DWORD getIPStats(PMIB_IPSTATS stats)
DWORD getTCPStats(MIB_TCPSTATS *stats)
{
@@ -40,7 +40,7 @@ $NetBSD: patch-ad,v 1.3 2009/01/30 19:39:04 adam Exp $
#ifndef TCPTV_MIN /* got removed in Mac OS X for some reason */
#define TCPTV_MIN 2
#define TCPTV_REXMTMAX 128
-@@ -785,7 +789,7 @@ DWORD getTCPStats(MIB_TCPSTATS *stats)
+@@ -789,7 +793,7 @@ DWORD getTCPStats(MIB_TCPSTATS *stats)
DWORD getUDPStats(MIB_UDPSTATS *stats)
{
@@ -49,7 +49,7 @@ $NetBSD: patch-ad,v 1.3 2009/01/30 19:39:04 adam Exp $
int mib[] = {CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_STATS};
#define MIB_LEN (sizeof(mib) / sizeof(mib[0]))
struct udpstat udp_stat;
-@@ -1027,7 +1031,11 @@ DWORD getNumRoutes(void)
+@@ -1031,7 +1035,11 @@ DWORD getNumRoutes(void)
/* Ignore all entries except for gateway routes which aren't
multicast */
@@ -61,7 +61,7 @@ $NetBSD: patch-ad,v 1.3 2009/01/30 19:39:04 adam Exp $
continue;
RouteCount++;
-@@ -1103,8 +1111,12 @@ DWORD getRouteTable(PMIB_IPFORWARDTABLE
+@@ -1107,8 +1115,12 @@ DWORD getRouteTable(PMIB_IPFORWARDTABLE
/* Ignore all entries except for gateway routes which aren't
multicast */
@@ -74,7 +74,7 @@ $NetBSD: patch-ad,v 1.3 2009/01/30 19:39:04 adam Exp $
continue;
memset (&table->table[table->dwNumEntries], 0,
-@@ -1265,7 +1277,7 @@ DWORD getRouteTable(PMIB_IPFORWARDTABLE
+@@ -1269,7 +1281,7 @@ DWORD getRouteTable(PMIB_IPFORWARDTABLE
DWORD getNumArpEntries(void)
{
@@ -83,7 +83,7 @@ $NetBSD: patch-ad,v 1.3 2009/01/30 19:39:04 adam Exp $
int mib[] = {CTL_NET, PF_ROUTE, 0, AF_INET, NET_RT_FLAGS, RTF_LLINFO};
#define MIB_LEN (sizeof(mib) / sizeof(mib[0]))
DWORD arpEntries = 0;
-@@ -1321,7 +1333,7 @@ DWORD getArpTable(PMIB_IPNETTABLE *ppIpN
+@@ -1325,7 +1337,7 @@ DWORD getArpTable(PMIB_IPNETTABLE *ppIpN
if (numEntries > 1)
size += (numEntries - 1) * sizeof(MIB_IPNETROW);
table = HeapAlloc(heap, flags, size);
diff --git a/emulators/wine-devel/patches/patch-ba b/emulators/wine-devel/patches/patch-ba
index 97fe0db2f46..ffb04d69d6d 100644
--- a/emulators/wine-devel/patches/patch-ba
+++ b/emulators/wine-devel/patches/patch-ba
@@ -1,8 +1,16 @@
-$NetBSD: patch-ba,v 1.6 2009/01/30 19:39:04 adam Exp $
+$NetBSD: patch-ba,v 1.7 2009/02/19 19:26:17 adam Exp $
---- configure.orig 2009-01-30 17:54:01.000000000 +0100
+--- configure.orig 2009-02-13 18:01:33.000000000 +0100
+++ configure
-@@ -17950,6 +17950,11 @@ MAIN_BINARY="wine-pthread"
+@@ -3945,7 +3945,6 @@ TOOLSDIR=$wine_cv_toolsdir
+
+ if test -n "$host_alias"
+ then
+- TARGETFLAGS="-b $host_alias $TARGETFLAGS"
+
+ fi
+
+@@ -17911,6 +17910,11 @@ MAIN_BINARY="wine-pthread"
EXTRA_BINARIES="wine-pthread"
;;