From 5853fbc15024643448b407d93baf0c5b64f259bd Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 2 Jul 2019 11:57:08 +0200 Subject: [PATCH] export symbol lasso_log (#33784) The symbol lasso_log has to be exported, otherwise Solaris run-time linker fails due to an unresolved symbol dependency. --- lasso/logging.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lasso/logging.h b/lasso/logging.h index 05413211..59ed90e5 100644 --- a/lasso/logging.h +++ b/lasso/logging.h @@ -28,8 +28,8 @@ #include "errors.h" #ifndef lasso_log -void lasso_log(GLogLevelFlags level, const char *filename, int line, - const char *function, const char *format, ...); +LASSO_EXPORT void lasso_log(GLogLevelFlags level, const char *filename, + int line, const char *function, const char *format, ...); #endif int lasso_log_error_code(GLogLevelFlags level, int error, ...);