modules: compile rtkit module instead of using a symlink

The rpath is otherwise not right.

Fixes #2065
This commit is contained in:
Wim Taymans 2022-01-25 16:42:27 +01:00
parent db2719f1f4
commit 3399d58e85

View file

@ -148,17 +148,12 @@ pipewire_module_rt = shared_library('pipewire-module-rt', [ 'module-rt.c' ],
) )
# TODO: This serves as a temporary alias to prevent breaking existing setups # TODO: This serves as a temporary alias to prevent breaking existing setups
# while `module-rtkit` is being migrated to `module-rt` # while `module-rtkit` is being migrated to `module-rt`
fs = import('fs') pipewire_module_rtkit = shared_library('pipewire-module-rtkit', [ 'module-rt.c' ],
custom_target('pipewire-module-rtkit', include_directories : [configinc],
# Basing this on the original output path makes sure we get the library
# prefixes and suffixes right
output : [fs.name(pipewire_module_rt.full_path()).replace('module-rt', 'module-rtkit')],
# Using the `input` parameter for this doesn't work on Meson 59, and on newer
# versions it will show a spurious warning
command : ['ln', '-sf', fs.name(pipewire_module_rt.full_path()), '@OUTPUT@'],
install : true, install : true,
install_dir : modules_install_dir, install_dir : modules_install_dir,
depends : [pipewire_module_rt], install_rpath: modules_install_dir,
dependencies : [dbus_dep, mathlib, dl_lib, pipewire_dep],
) )
endif endif
summary({'rt': build_module_rt}, bool_yn: true, section: 'Optional Modules') summary({'rt': build_module_rt}, bool_yn: true, section: 'Optional Modules')