diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2008-06-09 17:31:22 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2008-06-09 17:31:22 (GMT) |
commit | 6df2bbd6e93c8731ac5c7a39f32090487b9061f5 (patch) | |
tree | fdaced2c64e3c5f2428f6ef02022f48f37989905 /windows | |
parent | 0304c9a5fa3aca4331505e36c939f0347acf0132 (diff) | |
download | hdf5-6df2bbd6e93c8731ac5c7a39f32090487b9061f5.zip hdf5-6df2bbd6e93c8731ac5c7a39f32090487b9061f5.tar.gz hdf5-6df2bbd6e93c8731ac5c7a39f32090487b9061f5.tar.bz2 |
[svn-r15181] Purpose: _WIN32 macro cleanup
Description:
As part of our Windows cleanup, we try to remove windows-specific tweaks in the source code. There are many instances where Windows code is introduces via ifdef's. We re-evaluate whether they are still required, and found that many of them are not. Others we change to "feature"-specific code, rather than Windows-specific.
Tested:
VS2005 on WinXP
VS.NET on WinXP
h5committest (kagisopp, smirom, linew)
Diffstat (limited to 'windows')
-rwxr-xr-x | windows/src/H5pubconf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/windows/src/H5pubconf.h b/windows/src/H5pubconf.h index 0c06901..2ab12a1 100755 --- a/windows/src/H5pubconf.h +++ b/windows/src/H5pubconf.h @@ -37,6 +37,7 @@ /*#define H5_HAVE_TM_ZONE 1 windows do not use this constant.*/ #define H5_MALLOC_WORKS 1 +#define H5_HAVE_TIMEZONE 1 /* code warrior returns 0 in malloc(0) */ #if defined(__MWERKS__) @@ -200,4 +201,4 @@ paths. This shouldn't need to be commented or removed. */ /* uncomment the following line if you need the library to perform "strict" memory operations, which is useful when debugging with a memory checking tool like Purify, etc. */ -/* #define H5_USING_MEMCHECKER 1 */
\ No newline at end of file +/* #define H5_USING_MEMCHECKER 1 */ |