there are differences between meson and autotools.
autotools installs them under ${libdir}/ecore_buffer/modules/module/version/ as module.so
Reviewed-by: Marcel Hollerbach <marcel-hollerbach@t-online.de>
Differential Revision: https://phab.enlightenment.org/D7837
-ecore_buffer_shm_mod = shared_module('module.so',
+ecore_buffer_shm_mod = shared_module('module',
'ecore_buffer_shm.c',
+ name_prefix: '',
dependencies: [ecore, ecore_buffer],
install: true,
install_dir: join_paths(dir_lib, 'ecore_buffer', 'modules', 'shm', version_name)
-)
\ No newline at end of file
+)
-ecore_buffer_x11_dri2_mod = shared_module('module.so',
+ecore_buffer_x11_dri2_mod = shared_module('module',
'ecore_buffer_x11_dri2.c',
+ name_prefix: '',
dependencies: [ecore, ecore_buffer, ecore_x],
install: true,
install_dir: join_paths(dir_lib, 'ecore_buffer', 'modules', 'x11_dri2', version_name)
-)
\ No newline at end of file
+)
if dependency('libtbm', required: false).found() == true and dependency('libdrm', required: false).found()
- ecore_buffer_x11_dri3_mod = shared_module('module.so',
+ ecore_buffer_x11_dri3_mod = shared_module('module',
'ecore_buffer_x11_dri3.c',
+ name_prefix: '',
dependencies: [ecore, ecore_buffer, ecore_x],
install: true,
install_dir: join_paths(dir_lib, 'ecore_buffer', 'modules', 'x11_dri3', version_name)
)
-endif
\ No newline at end of file
+endif