I attempted to bootstrap pulseaudio and got a non obvious error. log is here https://pastebin.com/CctNdLwD
installing autopoint fixed the problem The attached patch makes bootstrap.sh fail if autopoint is not available. -- Sincerely, Russell Treleaven sip:[email protected]
From 703d95fd00aff96fc66c5f960345945dd04e8980 Mon Sep 17 00:00:00 2001 From: Arun Raghavan <[email protected]> Date: Sun, 3 Sep 2017 13:26:14 +0530 Subject: [PATCH] always-source: Fix pa_module_load() usage The API changed slightly since the original patch was written. --- src/modules/module-always-source.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module-always-source.c b/src/modules/module-always-source.c index 09ac7aa..5c1f22a 100644 --- a/src/modules/module-always-source.c +++ b/src/modules/module-always-source.c @@ -80,7 +80,7 @@ static void load_null_source_if_needed(pa_core *c, pa_source *source, struct use u->ignore = true; t = pa_sprintf_malloc("source_name=%s", u->source_name); - m = pa_module_load(c, "module-null-source", t); + pa_module_load(&m, c, "module-null-source", t); u->null_module = m ? m->index : PA_INVALID_INDEX; pa_xfree(t); -- 1.9.1
_______________________________________________ pulseaudio-discuss mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss
