diff options
-rw-r--r-- | configure.in | 1 | ||||
-rw-r--r-- | dbus/dbus-sysdeps-wince-glue.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 4bc50e7a..484e6aea 100644 --- a/configure.in +++ b/configure.in @@ -100,6 +100,7 @@ if test "$dbus_win" = yes; then fi if test "$dbus_wince" = yes; then AC_DEFINE(DBUS_WINCE,1,[Defined if we run on a W32 CE API based system]) + AC_DEFINE(_WIN32_WCE, 0x0502, [Defined to get newer W32 CE APIs]) fi else AC_DEFINE(DBUS_UNIX,1,[Defined if we run on a Unix-based system]) diff --git a/dbus/dbus-sysdeps-wince-glue.h b/dbus/dbus-sysdeps-wince-glue.h index 3391be9e..7a6462b2 100644 --- a/dbus/dbus-sysdeps-wince-glue.h +++ b/dbus/dbus-sysdeps-wince-glue.h @@ -28,7 +28,7 @@ #include <time.h> #include <stdarg.h> -/* For getaddrinfo. */ +/* For getaddrinfo, configure/cmake defined _WIN32_WCE to something >= 0x0401. */ #include <windows.h> #undef interface |