From 0db6c6f214a83ffeeefb7c3b77476567e534facb Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 11 Feb 2018 18:28:10 -0800 Subject: [PATCH] Add Sun compiler to no-visibility as well Fixes https://github.com/harfbuzz/harfbuzz/pull/776 --- src/hb-private.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-private.hh b/src/hb-private.hh index a516624a..dc0178dd 100644 --- a/src/hb-private.hh +++ b/src/hb-private.hh @@ -120,7 +120,7 @@ extern "C" void hb_free_impl(void *ptr); #endif #ifndef HB_INTERNAL -# if !defined(HB_NO_VISIBILITY) && !defined(__MINGW32__) && !defined(__CYGWIN__) +# if !defined(HB_NO_VISIBILITY) && !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(__SUNPRO_CC) # define HB_INTERNAL __attribute__((__visibility__("hidden"))) # else # define HB_INTERNAL -- GitLab