mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2026-04-03 07:15:42 -04:00
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:
commit
e4a0573105
3 changed files with 4 additions and 4 deletions
|
|
@ -12,7 +12,7 @@ if wayland_version[0] != '1'
|
||||||
error('We probably need to bump the SONAME of libwayland-cursor')
|
error('We probably need to bump the SONAME of libwayland-cursor')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
wayland_cursor = library(
|
wayland_cursor = shared_library(
|
||||||
'wayland-cursor',
|
'wayland-cursor',
|
||||||
sources: [
|
sources: [
|
||||||
'wayland-cursor.c',
|
'wayland-cursor.c',
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
wayland_egl = library(
|
wayland_egl = shared_library(
|
||||||
'wayland-egl',
|
'wayland-egl',
|
||||||
sources: [
|
sources: [
|
||||||
'wayland-egl.c',
|
'wayland-egl.c',
|
||||||
|
|
|
||||||
|
|
@ -169,7 +169,7 @@ if get_option('libraries')
|
||||||
error('We probably need to bump the SONAME of libwayland-server and -client')
|
error('We probably need to bump the SONAME of libwayland-server and -client')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
wayland_server = library(
|
wayland_server = shared_library(
|
||||||
'wayland-server',
|
'wayland-server',
|
||||||
sources: [
|
sources: [
|
||||||
wayland_server_protocol_core_h,
|
wayland_server_protocol_core_h,
|
||||||
|
|
@ -222,7 +222,7 @@ if get_option('libraries')
|
||||||
meson.override_dependency('wayland-server', wayland_server_dep)
|
meson.override_dependency('wayland-server', wayland_server_dep)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
wayland_client = library(
|
wayland_client = shared_library(
|
||||||
'wayland-client',
|
'wayland-client',
|
||||||
sources: [
|
sources: [
|
||||||
wayland_client_protocol_core_h,
|
wayland_client_protocol_core_h,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue