mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-08 11:28:01 +02:00
dbus-sysdeps-win: don't include wspiapi.h
This block provoked a warning on mingw-w64 because we were redefining _inline. According to Ralf's research, it was introduced in452ff68a: Windows 2000 doesn't have getaddrinfo and related functions in ws2tcpip.h, but does have a shim implementation in wspiapi.h. At the time of452ff68a, mingw32 didn't have wspiapi.h, so it's unclear why there was a __GNUC__ code path here. The "#define _inline" on that code path looks likely to be some sort of workaround for a faulty version of wspiapi.h? Current mingw-w64 does have wspiapi.h, so we enter the __GNUC__ code path and get the redefinition. dbus no longer supports Windows 2000, so we no longer need wspiapi.h at all, and can rely on XP or later. (Ralf's policy is to only support versions of Windows that are still supported by Microsoft, and Windows 2000 reached the end of its life-cycle in 2010.) Bug: https://bugs.freedesktop.org/show_bug.cgi?id=68852 Reviewed-by: Ralf Habacker
This commit is contained in:
parent
a411abc9c3
commit
3b9c2817e9
4 changed files with 0 additions and 16 deletions
|
|
@ -11,7 +11,6 @@ check_include_file(sys/time.h HAVE_SYS_TIME_H)# dbus-sysdeps-win.c
|
|||
check_include_file(sys/wait.h HAVE_SYS_WAIT_H)# dbus-sysdeps-win.c
|
||||
check_include_file(time.h HAVE_TIME_H) # dbus-sysdeps-win.c
|
||||
check_include_file(ws2tcpip.h HAVE_WS2TCPIP_H)# dbus-sysdeps-win.c
|
||||
check_include_file(wspiapi.h HAVE_WSPIAPI_H) # dbus-sysdeps-win.c
|
||||
check_include_file(unistd.h HAVE_UNISTD_H) # dbus-sysdeps-util-win.c
|
||||
check_include_file(stdio.h HAVE_STDIO_H) # dbus-sysdeps.h
|
||||
check_include_file(sys/syslimits.h HAVE_SYS_SYSLIMITS_H) # dbus-sysdeps-unix.c
|
||||
|
|
|
|||
|
|
@ -124,9 +124,6 @@
|
|||
/* Define to 1 if you have ws2tcpip.h */
|
||||
#cmakedefine HAVE_WS2TCPIP_H
|
||||
|
||||
/* Define to 1 if you have wspiapi.h */
|
||||
#cmakedefine HAVE_WSPIAPI_H 1
|
||||
|
||||
/* Define to 1 if you have unistd.h */
|
||||
#cmakedefine HAVE_UNISTD_H 1
|
||||
|
||||
|
|
|
|||
|
|
@ -699,8 +699,6 @@ AC_CHECK_HEADERS(unistd.h)
|
|||
|
||||
AC_CHECK_HEADERS(ws2tcpip.h)
|
||||
|
||||
AC_CHECK_HEADERS(wspiapi.h)
|
||||
|
||||
AC_CHECK_HEADERS(alloca.h)
|
||||
|
||||
# Add -D_POSIX_PTHREAD_SEMANTICS if on Solaris
|
||||
|
|
|
|||
|
|
@ -77,16 +77,6 @@ extern BOOL WINAPI ConvertSidToStringSidA (PSID Sid, LPSTR *StringSid);
|
|||
#include <ws2tcpip.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_WSPIAPI_H
|
||||
// needed for w2k compatibility (getaddrinfo/freeaddrinfo/getnameinfo)
|
||||
#ifdef __GNUC__
|
||||
#define _inline
|
||||
#include "wspiapi.h"
|
||||
#else
|
||||
#include <wspiapi.h>
|
||||
#endif
|
||||
#endif // HAVE_WSPIAPI_H
|
||||
|
||||
#ifndef O_BINARY
|
||||
#define O_BINARY 0
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue