summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2010-06-03 22:15:30 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2010-06-03 22:15:30 (GMT)
commit9752e55b78edcf59b733bad9a0eb5e12c01fe40a (patch)
treea5869490885dd9d1178eccecbe751ce5288b6bf8 /src
parent7469fe0563443f2a476b6bf55d3fd978060c828c (diff)
downloadhdf5-9752e55b78edcf59b733bad9a0eb5e12c01fe40a.zip
hdf5-9752e55b78edcf59b733bad9a0eb5e12c01fe40a.tar.gz
hdf5-9752e55b78edcf59b733bad9a0eb5e12c01fe40a.tar.bz2
[svn-r18964] Windows use of VC_EXTRALEAN no longer did anything. It has been replaced by WIN32_LEAN_AND_MEAN macro. This was the cause of a define conflict causing the use of grp1 and grp2 to be replaced with constants in the h5dumpgentest.c file.
This also affected the use of the #include <winsock.h> needed by gethostname. The new include: winsock2.h has been added to h5private.h and either removed or updated in the other files. Tested: Windows
Diffstat (limited to 'src')
-rw-r--r--src/H5private.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/H5private.h b/src/H5private.h
index 93be1ce..f121875 100644
--- a/src/H5private.h
+++ b/src/H5private.h
@@ -142,7 +142,11 @@
#ifdef _WIN32
-#define VC_EXTRALEAN /*Exclude rarely-used stuff from Windows headers */
+#ifdef H5_HAVE_WINSOCK_H
+#include <winsock2.h>
+#endif
+
+#define WIN32_LEAN_AND_MEAN /*Exclude rarely-used stuff from Windows headers */
#include <windows.h>
#include <direct.h> /* For _getcwd() */