diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2010-11-18 17:37:57 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2010-11-18 17:37:57 (GMT) |
commit | 0bb0aa86e71049ae91234a91822968222b53c6cf (patch) | |
tree | 1a3e438a8168fe3aa428fbeb2bea23ece97a2e31 /perform | |
parent | 6dff34aab1da9cfade7d9876a07698ff5896d4b6 (diff) | |
download | hdf5-0bb0aa86e71049ae91234a91822968222b53c6cf.zip hdf5-0bb0aa86e71049ae91234a91822968222b53c6cf.tar.gz hdf5-0bb0aa86e71049ae91234a91822968222b53c6cf.tar.bz2 |
[svn-r19823] BZ2013: Remove use of WIN32 defines. These two files were dependent on the winsock2.h header so changed WIN32 to H5_HAVE_WINSOCK_H.
Tested: windows
Diffstat (limited to 'perform')
-rw-r--r-- | perform/sio_timer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perform/sio_timer.h b/perform/sio_timer.h index 82f053d..1fa880d 100644 --- a/perform/sio_timer.h +++ b/perform/sio_timer.h @@ -26,9 +26,9 @@ # include <time.h> #endif -#ifdef _WIN32 +#ifdef H5_HAVE_WINSOCK_H # include <winsock2.h> -#endif /* _WIN32 */ +#endif /* H5_HAVE_WINSOCK_H */ /* The different types of timers we can have */ typedef enum timer_type_ { |