plugin: Use weak reference for external debug statements

This commit is contained in:
Marcel Holtmann 2011-08-16 09:15:53 -07:00
parent 28b0049930
commit 152529ac75
1 changed files with 2 additions and 2 deletions

View File

@ -73,9 +73,9 @@ struct ofono_plugin_desc {
#else
#define OFONO_PLUGIN_DEFINE(name, description, version, priority, init, exit) \
extern struct ofono_debug_desc __start___debug[] \
__attribute__ ((visibility("hidden"))); \
__attribute__ ((weak, visibility("hidden"))); \
extern struct ofono_debug_desc __stop___debug[] \
__attribute__ ((visibility("hidden"))); \
__attribute__ ((weak, visibility("hidden"))); \
extern struct ofono_plugin_desc ofono_plugin_desc \
__attribute__ ((visibility("default"))); \
struct ofono_plugin_desc ofono_plugin_desc = { \