[svn-r25624] Define symbol for other compilers as nothing.

Tested: platypus
This commit is contained in:
Allen Byrne 2014-09-26 09:12:55 -05:00
parent 38ffe94174
commit 8bd91611f4

View File

@ -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