summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-11-19 16:10:39 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-11-19 16:10:39 +0000
commit8a8d05a55d80d6548600360b29334a8184b2018a (patch)
tree09468f84fc86210b02657cd5c8649ca93c52fcdd
parentd4a2fbc848bed6c94d2208b013bc9847beec0b70 (diff)
downloadATCD-8a8d05a55d80d6548600360b29334a8184b2018a.tar.gz
Wed Nov 19 15:58:30 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ACE/ChangeLog5
-rw-r--r--ACE/ace/config-win32-common.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 745ae181f2d..270fe6178b2 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,8 @@
+Wed Nov 19 15:58:30 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/config-win32-common.h:
+ Fixed WinCE version number check
+
Wed Nov 19 09:10:00 UTC 2008 Simon Massey <sma at prismtech dot com>
* NEWS:
diff --git a/ACE/ace/config-win32-common.h b/ACE/ace/config-win32-common.h
index 63107c0cab5..5d6e52b1832 100644
--- a/ACE/ace/config-win32-common.h
+++ b/ACE/ace/config-win32-common.h
@@ -450,7 +450,7 @@
# include /**/ <winsock2.h>
// WinCE 4 doesn't define the Exxx values without the WSA prefix, so do that
// here. This is all lifted from the #if 0'd out part of winsock2.h.
-# if defined (_WIN32_WCE) && (_WIN32_WCE < 600)
+# if defined (_WIN32_WCE) && (_WIN32_WCE < 0x600)
# define EWOULDBLOCK WSAEWOULDBLOCK
# define EINPROGRESS WSAEINPROGRESS
# define EALREADY WSAEALREADY