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,8 +14,12 @@
# define EAPI __declspec(dllimport)
# endif
#else
# ifdef GCC_HASCLASSVISIBILITY
# define EAPI __attribute__ ((visibility("default")))
# ifdef __GNUC__
# if __GNUC__ >= 4
# define EAPI __attribute__ ((visibility("default")))
# else
# define EAPI
# endif
# else
# define EAPI
# endif