diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/meson.build b/meson.build index 70b64471..0e3143a2 100644 --- a/meson.build +++ b/meson.build @@ -303,7 +303,7 @@ enable_gtk_doc = get_option('gtk_doc') enable_plugins = not get_option('auto_features').disabled() plugins_shared_reqs = { - 'fibocom': enable_mbim, + 'fibocom': true, 'foxconn': enable_mbim, 'icera': true, 'novatel': true, @@ -313,13 +313,11 @@ plugins_shared_reqs = { 'xmm': true, } - -fibocom_shared_reqs = ['xmm'] dell_shared_reqs = ['novatel', 'sierra', 'telit', 'xmm'] mtk_shared_reqs = [] if enable_mbim - fibocom_shared_reqs += ['fibocom'] dell_shared_reqs += ['foxconn'] + # only the MBIM implementation in MTK needs the shared fibocom utils mtk_shared_reqs += ['fibocom'] endif @@ -330,7 +328,7 @@ plugins_options_reqs = { 'cinterion': {'available': true, 'shared': []}, 'dell': {'available': true, 'shared': dell_shared_reqs}, 'dlink': {'available': true, 'shared': []}, - 'fibocom': {'available': true, 'shared': fibocom_shared_reqs}, + 'fibocom': {'available': true, 'shared': ['xmm', 'fibocom']}, 'foxconn': {'available': enable_mbim, 'shared': ['foxconn']}, 'generic': {'available': true, 'shared': []}, 'gosuncn': {'available': true, 'shared': []}, |