diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2019-11-17 13:45:07 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-11-27 10:11:43 +0000 |
commit | b1c3f1eb1c740975b3ea387ae5e08dc426643c8b (patch) | |
tree | 50e9fc8882feb0f4dcf0738347d7866056a3146c /plugins | |
parent | 1bd6980510e4f8f4471debff173845cd67fe8ccb (diff) |
plugin-manager: dynamically load 'shared' util libraries
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 358e4717..70e2ca0e 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -37,6 +37,14 @@ AM_CFLAGS += $(MBIM_CFLAGS) AM_LDFLAGS += $(MBIM_LIBS) endif +# Common compiler/linker flags for shared utils +SHARED_COMMON_COMPILER_FLAGS = \ + $(NULL) +SHARED_COMMON_LINKER_FLAGS = \ + -module \ + -avoid-version \ + $(NULL) + # Common compiler/linker flags for plugins PLUGIN_COMMON_COMPILER_FLAGS = \ $(NULL) |