From 2a50894a436559785a7e0f6f65dde13b0082572c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Mon, 22 Apr 2019 20:57:31 +0200 Subject: Add support for GCC hidden visibility. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- libart-features.h.in | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'libart-features.h.in') diff --git a/libart-features.h.in b/libart-features.h.in index 88d4965..7ac16c9 100644 --- a/libart-features.h.in +++ b/libart-features.h.in @@ -1,6 +1,14 @@ #ifndef LIBART_FEATURES_H #define LIBART_FEATURES_H 1 +#if !defined( _ART_CONFIG_H_ ) +#ifdef LIBART_COMPILATION +#include "art_config.h" +#else +#include +#endif +#endif + #define LIBART_MAJOR_VERSION (@LIBART_MAJOR_VERSION@) #define LIBART_MINOR_VERSION (@LIBART_MINOR_VERSION@) #define LIBART_MICRO_VERSION (@LIBART_MICRO_VERSION@) @@ -13,12 +21,16 @@ # define LIBART_VAR extern __declspec(dllimport) # endif #else -# define LIBART_VAR extern +# ifdef LIBART_COMPILATION +# define LIBART_VAR LIBART_EXPORT +# else +# define LIBART_VAR extern +# endif #endif LIBART_VAR const unsigned int libart_major_version, libart_minor_version, libart_micro_version; LIBART_VAR const char *libart_version; -void libart_preinit(void *app, void *modinfo); -void libart_postinit(void *app, void *modinfo); +LIBART_EXPORT void libart_preinit(void *app, void *modinfo); +LIBART_EXPORT void libart_postinit(void *app, void *modinfo); #endif -- cgit v1.2.3