summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorentin Noël <corentin.noel@collabora.com>2023-01-04 15:46:14 +0100
committerCorentin Noël <corentin.noel@collabora.com>2023-01-04 15:46:14 +0100
commita49d1e8950d6ff26e19da7f28be6e2d80406b05b (patch)
tree87c347f9c2d0a3810aadb7c07a79890b2ff20b65
parent995a3ba1e31b520b9d21c3500f0e5a0d0bce712f (diff)
downloadfolks-a49d1e8950d6ff26e19da7f28be6e2d80406b05b.tar.gz
backends: Declare the modules as shared_module instead of libraries
They really are just modules.
-rw-r--r--backends/bluez/meson.build2
-rw-r--r--backends/dummy/meson.build2
-rw-r--r--backends/eds/meson.build2
-rw-r--r--backends/key-file/meson.build2
-rw-r--r--backends/ofono/meson.build2
-rw-r--r--backends/telepathy/meson.build2
6 files changed, 6 insertions, 6 deletions
diff --git a/backends/bluez/meson.build b/backends/bluez/meson.build
index f1effa32..afeae63f 100644
--- a/backends/bluez/meson.build
+++ b/backends/bluez/meson.build
@@ -26,7 +26,7 @@ bluez_backend_c_flags = [
'-DG_LOG_DOMAIN="@0@"'.format(bluez_backend_name),
]
-bluez_backend = shared_library(bluez_backend_name,
+bluez_backend = shared_module(bluez_backend_name,
bluez_backend_sources,
dependencies: bluez_backend_deps,
vala_args: bluez_backend_vala_flags,
diff --git a/backends/dummy/meson.build b/backends/dummy/meson.build
index 24eaed6b..c3518896 100644
--- a/backends/dummy/meson.build
+++ b/backends/dummy/meson.build
@@ -22,7 +22,7 @@ dummy_backend_c_flags = [
'-DG_LOG_DOMAIN="@0@"'.format(dummy_backend_name),
]
-dummy_backend = shared_library(dummy_backend_name,
+dummy_backend = shared_module(dummy_backend_name,
dummy_backend_sources,
dependencies: dummy_backend_deps,
vala_args: dummy_backend_vala_flags,
diff --git a/backends/eds/meson.build b/backends/eds/meson.build
index 69235db8..59585e16 100644
--- a/backends/eds/meson.build
+++ b/backends/eds/meson.build
@@ -25,7 +25,7 @@ eds_backend_c_flags = [
'-DG_LOG_DOMAIN="@0@"'.format(eds_backend_name),
]
-eds_backend = library('eds',
+eds_backend = shared_module('eds',
eds_backend_sources,
dependencies: eds_backend_deps,
vala_args: eds_backend_vala_flags,
diff --git a/backends/key-file/meson.build b/backends/key-file/meson.build
index 7693d0b9..83733bab 100644
--- a/backends/key-file/meson.build
+++ b/backends/key-file/meson.build
@@ -20,7 +20,7 @@ keyfile_backend_c_flags = [
'-DG_LOG_DOMAIN="@0@"'.format(keyfile_backend_name),
]
-keyfile_backend = shared_library(keyfile_backend_name,
+keyfile_backend = shared_module(keyfile_backend_name,
keyfile_backend_sources,
dependencies: keyfile_backend_deps,
vala_args: keyfile_backend_vala_flags,
diff --git a/backends/ofono/meson.build b/backends/ofono/meson.build
index a5143ea0..44460519 100644
--- a/backends/ofono/meson.build
+++ b/backends/ofono/meson.build
@@ -23,7 +23,7 @@ ofono_backend_c_flags = [
'-DG_LOG_DOMAIN="@0@"'.format(ofono_backend_name),
]
-ofono_backend = shared_library(ofono_backend_name,
+ofono_backend = shared_module(ofono_backend_name,
ofono_backend_sources,
dependencies: ofono_backend_deps,
vala_args: ofono_backend_vala_flags,
diff --git a/backends/telepathy/meson.build b/backends/telepathy/meson.build
index 6d245887..c1fb4e9d 100644
--- a/backends/telepathy/meson.build
+++ b/backends/telepathy/meson.build
@@ -25,7 +25,7 @@ telepathy_backend_c_flags = [
'-DG_LOG_DOMAIN="@0@"'.format(telepathy_backend_name),
]
-telepathy_backend = shared_library(telepathy_backend_name,
+telepathy_backend = shared_module(telepathy_backend_name,
telepathy_backend_sources,
dependencies: telepathy_backend_deps,
vala_args: telepathy_backend_vala_flags,