Fix missed GCC 4 visibility (bad raster) so that e_utils builds again

SVN revision: 19399
This commit is contained in:
Christopher Michael 2005-12-30 01:52:20 +00:00
parent ebc84f1d30
commit 50a9bbe250
1 changed files with 6 additions and 2 deletions

View File

@ -14,11 +14,15 @@
# define EAPI __declspec(dllimport) # define EAPI __declspec(dllimport)
# endif # endif
#else #else
# ifdef GCC_HASCLASSVISIBILITY # ifdef __GNUC__
# if __GNUC__ >= 4
# define EAPI __attribute__ ((visibility("default"))) # define EAPI __attribute__ ((visibility("default")))
# else # else
# define EAPI # define EAPI
# endif # endif
# else
# define EAPI
# endif
#endif #endif
typedef enum E_Lib_Binding_Context typedef enum E_Lib_Binding_Context