diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2014-09-26 14:12:55 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2014-09-26 14:12:55 (GMT) |
commit | 8bd91611f45490c06b08cdc5a712127f5541033c (patch) | |
tree | 9ab1ad9104127048e6987fcba02705f1aef189c7 | |
parent | 38ffe941745d9aaecf1705fe1cdc15686ca726ed (diff) | |
download | hdf5-8bd91611f45490c06b08cdc5a712127f5541033c.zip hdf5-8bd91611f45490c06b08cdc5a712127f5541033c.tar.gz hdf5-8bd91611f45490c06b08cdc5a712127f5541033c.tar.bz2 |
[svn-r25624] Define symbol for other compilers as nothing.
Tested: platypus
-rw-r--r-- | src/H5PLextern.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5PLextern.h b/src/H5PLextern.h index a204cb7..8ad19e7 100644 --- a/src/H5PLextern.h +++ b/src/H5PLextern.h @@ -39,6 +39,8 @@ typedef enum H5PL_type_t { #define H5PLUGIN_DLL __declspec(dllexport) #elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */ #define H5PLUGIN_DLL __attribute__ ((visibility("default"))) +#else + #define H5PLUGIN_DLL #endif #ifdef __cplusplus |