From 2fc1fdd4003bb77cd50ed970de1fd62b7d809e6f Mon Sep 17 00:00:00 2001 From: Jehan Date: Mon, 5 May 2025 22:35:56 +0200 Subject: [PATCH] modules: partially revert commit 41ba9b31. We don't need to build modules as .so files with the last 2 commits. Just keep using shared_module() from commit 41ba9b31. --- modules/meson.build | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/meson.build b/modules/meson.build index ce90da33c0..14e2c3b2d8 100644 --- a/modules/meson.build +++ b/modules/meson.build @@ -94,7 +94,5 @@ foreach module : modules link_args: link_args, install: true, install_dir: gimpplugindir / 'modules', - # Explicitly set .so suffix on macOS - name_suffix: host_machine.system() == 'darwin' ? 'so' : [], ) -endforeach \ No newline at end of file +endforeach