From b55e0478a50b056f536b73662d8173feb9e77afd Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 10 Dec 2022 09:18:12 -0500 Subject: Allow LV2_SYMBOL_EXPORT to be overridden --- include/lv2/core/lv2.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/lv2/core/lv2.h b/include/lv2/core/lv2.h index 06adea0..22ed02f 100644 --- a/include/lv2/core/lv2.h +++ b/include/lv2/core/lv2.h @@ -351,11 +351,13 @@ typedef struct LV2_Descriptor { Put this (LV2_SYMBOL_EXPORT) before any functions that are to be loaded by the host as a symbol from the dynamic library. */ -#ifdef _WIN32 -# define LV2_SYMBOL_EXPORT LV2_SYMBOL_EXTERN __declspec(dllexport) -#else -# define LV2_SYMBOL_EXPORT \ - LV2_SYMBOL_EXTERN __attribute__((visibility("default"))) +#ifndef LV2_SYMBOL_EXPORT +# ifdef _WIN32 +# define LV2_SYMBOL_EXPORT LV2_SYMBOL_EXTERN __declspec(dllexport) +# else +# define LV2_SYMBOL_EXPORT \ + LV2_SYMBOL_EXTERN __attribute__((visibility("default"))) +# endif #endif /** -- cgit v1.2.1