-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pulseaudio: Update to freedesktop/pulseaudio@6329a2498eb038f8a9537888…
…280a62b00a93f68e New patches: - build-sys: meson: Fix building without GIO
- Loading branch information
Showing
5 changed files
with
35 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/pulseaudio/0001-client-conf-Enable-auto-connect-localhost-by-default.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
From 7a058556c96f59104ca8a87b2cea12c1ed653522 Mon Sep 17 00:00:00 2001 | ||
From 5115f7a2be212825f056a1f619ee5762730f2b9a Mon Sep 17 00:00:00 2001 | ||
From: Patrick Gaskin <[email protected]> | ||
Date: Thu, 31 Dec 2020 06:38:28 -0500 | ||
Subject: [PATCH] client-conf: Enable auto-connect-localhost by default | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
From 94ed041de040e4e7530dc5f2df52dddd9c906f89 Mon Sep 17 00:00:00 2001 | ||
From 784a2a9242a048f989b7db20ff527f53f008bde5 Mon Sep 17 00:00:00 2001 | ||
From: Patrick Gaskin <[email protected]> | ||
Date: Thu, 31 Dec 2020 20:43:42 -0500 | ||
Subject: [PATCH] system.pa: Tweaks for custom build | ||
|
2 changes: 1 addition & 1 deletion
2
src/pulseaudio/0003-system.pa-Tweaks-for-custom-build-with-unix-sockets.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
From f92125ff8bdfc6d65298711e7bafccae56e981c4 Mon Sep 17 00:00:00 2001 | ||
From eec511f76538a9e254f2b166898861eb75fa7e05 Mon Sep 17 00:00:00 2001 | ||
From: Patrick Gaskin <[email protected]> | ||
Date: Thu, 22 Apr 2021 08:11:11 -0400 | ||
Subject: [PATCH] system.pa: Tweaks for custom build with unix sockets | ||
|
28 changes: 28 additions & 0 deletions
28
src/pulseaudio/0004-build-sys-meson-Fix-building-without-GIO.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
From 74469f4b25ad5d31be01b3c721da4a580f876de8 Mon Sep 17 00:00:00 2001 | ||
From: Patrick Gaskin <[email protected]> | ||
Date: Wed, 4 Aug 2021 04:44:23 -0400 | ||
Subject: [PATCH] build-sys: meson: Fix building without GIO | ||
|
||
GIO is only needed for GSettings and GStreamer. | ||
|
||
Fixes a regression in 58052e0e04ee1b5fdb1027ebc19717e7766825ec. | ||
--- | ||
meson.build | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/meson.build b/meson.build | ||
index d7e468cab..dfc184679 100644 | ||
--- a/meson.build | ||
+++ b/meson.build | ||
@@ -614,7 +614,7 @@ if dbus_dep.found() | ||
cdata.set('HAVE_DBUS', 1) | ||
endif | ||
|
||
-gio_dep = dependency('gio-2.0', version : '>= 2.26.0') | ||
+gio_dep = dependency('gio-2.0', version : '>= 2.26.0', required: false) # checked later on where needed by gsettings and gstreamer | ||
if get_option('gsettings').enabled() | ||
assert(gio_dep.found(), 'GSettings support needs glib I/O library (GIO)') | ||
cdata.set('HAVE_GSETTINGS', 1) | ||
-- | ||
2.31.1 | ||
|