diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-05-13 15:50:31 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-05-13 15:50:31 (GMT) |
commit | 699d1727e014f2cc002d02e64afcb872b06dcb2b (patch) | |
tree | 92bd385a485b6887c6435556affd7b05e3c92dac | |
parent | c7478518b42a95006d49cc58b0b8c223ae84f9e5 (diff) | |
download | hdf5-699d1727e014f2cc002d02e64afcb872b06dcb2b.zip hdf5-699d1727e014f2cc002d02e64afcb872b06dcb2b.tar.gz hdf5-699d1727e014f2cc002d02e64afcb872b06dcb2b.tar.bz2 |
[svn-r6855] Purpose:
Bug Fix
Description:
The newly added H5TEST_DLL{VAR} macros weren't defined if it wasn't
a Windows environment.
Solution:
"#define" them to "" and "extern" if not a WIN32 environment.
Platforms tested:
Linux (small change not needing full testing)
Misc. update:
-rw-r--r-- | src/H5api_adpt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5api_adpt.h b/src/H5api_adpt.h index d7f2bdf..6297f47 100644 --- a/src/H5api_adpt.h +++ b/src/H5api_adpt.h @@ -59,6 +59,8 @@ #define H5_DLL #define H5_DLLVAR extern #define H5_DLLCPP +#define H5TEST_DLL +#define H5TEST_DLLVAR extern #endif #endif /* H5API_ADPT_H */ |