From: Simon McVittie Date: Fri, 28 Feb 2025 12:31:01 +0000 (+0000) Subject: build: Link subprojects statically if built as a subproject X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57abac5bc890292c1d60c6df6ebef5987c2cbef2;p=thirdparty%2Fdbus.git build: Link subprojects statically if built as a subproject If we're building a dependency as a fallback subproject, we don't want to be responsible for installing it as a shared library. Anyone wanting shared libraries should install the dependencies separately. Ideally we'd do this with MSVC too, but that doesn't currently link successfully (dbus#549). Signed-off-by: Simon McVittie --- diff --git a/meson.build b/meson.build index f46b551c2..19d842ce0 100644 --- a/meson.build +++ b/meson.build @@ -368,6 +368,12 @@ fallback_subproject_options = [ 'werror=false', ] +if cc.get_id() != 'msvc' + # TODO: Ideally we'd have default_library=static with MSVC too, + # but see https://gitlab.freedesktop.org/dbus/dbus/-/issues/549 + fallback_subproject_options += ['default_library=static'] +endif + # Controls whether message bus daemon is built. Tests which depend on # a running dbus-daemon will be disabled if message_bus is not set. message_bus = get_option('message_bus')