From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:46547) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h8v5I-0001Vt-M4 for guix-patches@gnu.org; Tue, 26 Mar 2019 19:02:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h8v5A-00025S-4V for guix-patches@gnu.org; Tue, 26 Mar 2019 19:02:17 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:47138) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h8v50-0001vR-52 for guix-patches@gnu.org; Tue, 26 Mar 2019 19:02:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h8v4z-0002iV-TR for guix-patches@gnu.org; Tue, 26 Mar 2019 19:02:01 -0400 Subject: [bug#35015] [PATCH] gnu: qjackctl: Re-enable xunique. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:46144) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h8v4I-00019A-I5 for guix-patches@gnu.org; Tue, 26 Mar 2019 19:01:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h8uxR-0002VX-9A for guix-patches@gnu.org; Tue, 26 Mar 2019 18:54:14 -0400 Received: from mout.gmx.net ([212.227.17.20]:43409) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h8uxQ-0002UX-PR for guix-patches@gnu.org; Tue, 26 Mar 2019 18:54:13 -0400 From: Pierre Langlois Date: Tue, 26 Mar 2019 22:54:08 +0000 Message-ID: <87bm1xdz73.fsf@gmx.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35015@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello, I realised version 0.5.6 of qjackctl appears to have fixed the xunique bug that was causing X hanging when using tiling window managers! https://github.com/rncbc/qjackctl/blob/d54a1da43fa197da04d676a110f36a1d4c062252/ChangeLog#L9 Thanks, Pierre --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-qjackctl-Re-enable-xunique.patch Content-Transfer-Encoding: quoted-printable =46rom 9c61af1a5ae548594016dcc50f1c5d125048eb5d Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Tue, 26 Mar 2019 22:48:11 +0000 Subject: [PATCH] gnu: qjackctl: Re-enable xunique. It looks like version 0.5.6 fixed the problem with tiling window manager. * gnu/packages/audio.scm (qjackctl)[arguments]: Remove "--disable-xunique" from configure-flags. =2D-- gnu/packages/audio.scm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index a38e77c996..aa99382f79 100644 =2D-- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2130,11 +2130,7 @@ different audio devices such as ALSA or PulseAudio.= ") "0wlmbb9m7cf3wr7c2h2hji18592x2b119m7mx85wksjs6rjaq2mj")))= ) (build-system gnu-build-system) (arguments - '(#:tests? #f ; no check target - ;; Disable xunique to prevent X hanging when starting qjackctl in - ;; tiling window managers such as StumpWM or i3 - ;; (see https://github.com/rncbc/qjackctl/issues/13). - #:configure-flags '("--disable-xunique"))) + '(#:tests? #f)) ; no check target (inputs `(("jack" ,jack-1) ("alsa-lib" ,alsa-lib) =2D- 2.21.0 --=-=-=--