summaryrefslogtreecommitdiff
path: root/src/edje_external
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2020-04-06 11:41:28 +0200
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2020-04-07 10:58:17 +0200
commit44a33c2dad59b4fd18964415f3a4a3a479772e0f (patch)
tree9a202fd8fb523f473d2d466f2e882d4fcf295c40 /src/edje_external
parentc9f9582753b9e0c4091af544a2be54ee2fdea70f (diff)
downloadefl-44a33c2dad59b4fd18964415f3a4a3a479772e0f.tar.gz
meson: support unified suffixes for modules
A long story in a few words: sometimes on macos modules will be compiled into .dylib, sometimes, into .so suffix. We did not set the suffix everywhere in our meson build instructions, hence our suffixes have been differently, which resulted in random load fails on different maschines. With this commit, we ensure that we suffix all modules the same way. Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com> Differential Revision: https://phab.enlightenment.org/D11650
Diffstat (limited to 'src/edje_external')
-rw-r--r--src/edje_external/elementary/meson.build1
-rw-r--r--src/edje_external/emotion/meson.build3
2 files changed, 3 insertions, 1 deletions
diff --git a/src/edje_external/elementary/meson.build b/src/edje_external/elementary/meson.build
index 383ab77d8b..033b54eab8 100644
--- a/src/edje_external/elementary/meson.build
+++ b/src/edje_external/elementary/meson.build
@@ -46,5 +46,6 @@ ecore_systemd_mod = shared_module('elementary',
install: true,
install_dir: mod_install_dir,
c_args : elm_package_c_args,
+ name_suffix : sys_mod_extension
)
module_files += join_paths(mod_install_dir, 'libelementary.' + sys_mod_extension)
diff --git a/src/edje_external/emotion/meson.build b/src/edje_external/emotion/meson.build
index 63e6ff82a0..5d869d8b7a 100644
--- a/src/edje_external/emotion/meson.build
+++ b/src/edje_external/emotion/meson.build
@@ -3,6 +3,7 @@ ecore_systemd_mod = shared_module('emotion',
dependencies: [edje, emotion],
install: true,
install_dir: mod_install_dir,
- c_args : emotion_package_c_args
+ c_args : emotion_package_c_args,
+ name_suffix : sys_mod_extension
)
module_files += join_paths(mod_install_dir, 'libemotion.' + sys_mod_extension)