Antonio Larrosa
fadeb6f81e
- Update to version 0.4.5: * Fixes: - Fixed a crash that could happen after a node linking error (glfo#pipewire/wireplumber#76) - Fixed a bug that would cause capture streams to link to monitor ports of loopback nodes instead of linking to their capture ports - Fixed a needless wait that would happen on applications using the pipewire ALSA plugin (glfo#pipewire/wireplumber#92) - Fixed an issue that would cause endless rescan loops in policy-node and could potentially also cause other strange behaviors in case pavucontrol or another monitoring utility was open while the policy was rescanning (glfo#pipewire/wireplumber#77) - Fixed the endpoints-based policy that broke in recent versions and improved its codebase to share more code and be more in-line with policy-node - The semicolon character is now escaped properly in state files (glfo#pipewire/wireplumber#82) - When a player requests encoded audio passthrough, the policy now prefers linking to a device that supports that instead of trying to link to the default device and potentially failing (glfo#pipewire/wireplumber#75) - Miscellaneous robustness fixes in policy-node * API: - Added WpFactory, a binding for pw_factory proxies. This allows object managers to query factories that are loaded in the pipewire daemon - The file-monitor-api plugin can now watch files for changes in addition to directories OBS-URL: https://build.opensuse.org/request/show/930868 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/wireplumber?expand=0&rev=8
27 lines
905 B
Diff
27 lines
905 B
Diff
From: Antonio Larrosa <alarrosa@suse.com>
|
|
Subject: Reduce the minimum required meson version
|
|
|
|
With this, we can build wireplumber in SLE 15 SP3/Leap 15.3
|
|
which only have meson 0.54
|
|
|
|
Index: wireplumber/meson.build
|
|
===================================================================
|
|
--- wireplumber.orig/meson.build
|
|
+++ wireplumber/meson.build
|
|
@@ -1,3 +1,3 @@
|
|
license : 'MIT',
|
|
- meson_version : '>= 0.56.0',
|
|
+ meson_version : '>= 0.54.0',
|
|
default_options : [
|
|
@@ -123,8 +123,8 @@ endif
|
|
|
|
conf_uninstalled = configuration_data()
|
|
conf_uninstalled.set('MESON', '')
|
|
-conf_uninstalled.set('MESON_SOURCE_ROOT', meson.project_source_root())
|
|
-conf_uninstalled.set('MESON_BUILD_ROOT', meson.project_build_root())
|
|
+conf_uninstalled.set('MESON_SOURCE_ROOT', meson.source_root())
|
|
+conf_uninstalled.set('MESON_BUILD_ROOT', meson.build_root())
|
|
|
|
wp_uninstalled = configure_file(
|
|
input : 'wp-uninstalled.sh',
|