Projet

Général

Profil

0001-export-symbol-lasso_log-fixes-33784.patch

Vita Batrla, 07 juin 2019 12:40

Télécharger (933 octets)

Voir les différences:

Subject: [PATCH] export symbol lasso_log (fixes: 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(-)
lasso/logging.h
28 28
#include "errors.h"
29 29

  
30 30
#ifndef lasso_log
31
void lasso_log(GLogLevelFlags level, const char *filename, int line,
32
		const char *function, const char *format, ...);
31
LASSO_EXPORT void lasso_log(GLogLevelFlags level, const char *filename,
32
		int line, const char *function, const char *format, ...);
33 33
#endif
34 34

  
35 35
int lasso_log_error_code(GLogLevelFlags level, int error, ...);
36
-