Merge branch 'no_static_builds' into 'main'

libs: Don't allow static libraries to be built

See merge request wayland/wayland!372
This commit is contained in:
Derek Foreman 2026-05-19 22:18:15 -05:00
commit 16a5f7d4b6
3 changed files with 4 additions and 4 deletions

View file

@ -169,7 +169,7 @@ if get_option('libraries')
error('We probably need to bump the SONAME of libwayland-server and -client')
endif
wayland_server = library(
wayland_server = shared_library(
'wayland-server',
sources: [
wayland_server_protocol_core_h,
@ -222,7 +222,7 @@ if get_option('libraries')
meson.override_dependency('wayland-server', wayland_server_dep)
endif
wayland_client = library(
wayland_client = shared_library(
'wayland-client',
sources: [
wayland_client_protocol_core_h,