From 699d1727e014f2cc002d02e64afcb872b06dcb2b Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 13 May 2003 10:50:31 -0500 Subject: [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: --- src/H5api_adpt.h | 2 ++ 1 file changed, 2 insertions(+) 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 */ -- cgit v0.12