From: Marc Mutz Date: Mon, 20 Apr 2009 13:07:06 +0000 (+0200) Subject: dbus/dbus-sysdeps-win.c: fix linking with mingw32 X-Git-Tag: dbus-1.3.1~261 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed3df419fe1c5e9e03bbf3fc6d8899dec259e0d3;p=thirdparty%2Fdbus.git dbus/dbus-sysdeps-win.c: fix linking with mingw32 * freeaddrinfo/getaddrinfo need _WIN32_WINNT to be 0x050_1_ (cherry picked from commit fa1f38452fafb841b7e2b36c7ca8918f9bde408f) --- diff --git a/dbus/dbus-sysdeps-win.c b/dbus/dbus-sysdeps-win.c index 4afa1658f..358d151f9 100644 --- a/dbus/dbus-sysdeps-win.c +++ b/dbus/dbus-sysdeps-win.c @@ -31,7 +31,7 @@ #define STRSAFE_NO_DEPRECATE #ifndef DBUS_WINCE -#define _WIN32_WINNT 0x0500 +#define _WIN32_WINNT 0x0501 #endif #include "dbus-internals.h"