bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e0369417f78c36999403d9c4a5c94b462c83e077
commit e0369417f78c36999403d9c4a5c94b462c83e077 Author: Marcel Hollerbach <[email protected]> Date: Mon Apr 6 11:50:34 2020 +0200 meson: build modules on macos as .so this is needed in order to support ecore-evas loading of .so modules Reviewed-by: Mike Blumenkrantz <[email protected]> Differential Revision: https://phab.enlightenment.org/D11651 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index b704d52121..0250512057 100644 --- a/meson.build +++ b/meson.build @@ -205,7 +205,7 @@ elif sys_windows == true elif sys_osx == true sys_lib_extension = 'dylib' sys_exe_extension = '' - sys_mod_extension = 'dylib' + sys_mod_extension = 'so' config_h.set('environ', '(*_NSGetEnviron())') else error('System '+host_machine.system()+' not known') --
