gstconfig.h: use default visibility for GST_EXPORT for gcc/clang too

This will be needed later when we switch to using -fvisibility=hidden.
This commit is contained in:
Tim-Philipp Müller 2017-05-10 13:03:31 +01:00
parent 0eecc49c13
commit 5fd554aa34

View file

@ -147,7 +147,7 @@
# endif
#else
# define GST_PLUGIN_EXPORT
# if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
# if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
# define GST_EXPORT extern __attribute__ ((visibility ("default")))
# else
# define GST_EXPORT extern