From 0f2c136700d7115483d538c3d32f0d84655ca6af Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Fri, 9 Sep 2022 16:33:09 -0400 Subject: [PATCH] 2022-09-09 Fred Gleason * Modified the JACK driver in caed(8) to define the 'JACK_NO_AUDIO_RESERVATION' in the environment before starting jackd(1). Signed-off-by: Fred Gleason --- ChangeLog | 4 ++++ cae/driver_jack.cpp | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index f7d92e2e..78819b21 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23283,3 +23283,7 @@ 2022-09-09 Fred Gleason * Added 'hpklinux-dev' to the list of required developmental packages for Ubuntu 22.04 in 'INSTALL'. +2022-09-09 Fred Gleason + * Modified the JACK driver in caed(8) to define the + 'JACK_NO_AUDIO_RESERVATION' in the environment before starting + jackd(1). diff --git a/cae/driver_jack.cpp b/cae/driver_jack.cpp index 6bee8fbd..14247070 100644 --- a/cae/driver_jack.cpp +++ b/cae/driver_jack.cpp @@ -472,6 +472,7 @@ bool DriverJack::initialize(unsigned *next_cardnum) QProcessEnvironment penv=QProcessEnvironment::systemEnvironment(); QProcess *proc=new QProcess(this); penv.insert("JACK_PROMISCUOUS_SERVER","audio"); + penv.insert("JACK_NO_AUDIO_RESERVATION","1"); proc->setProcessEnvironment(penv); proc->start(program,args); if(proc->waitForStarted()) {