From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:56272) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gi4QN-00007c-Is for guix-patches@gnu.org; Fri, 11 Jan 2019 16:33:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gi4QJ-0006d9-Q1 for guix-patches@gnu.org; Fri, 11 Jan 2019 16:33:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:57104) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gi4QJ-0006cr-26 for guix-patches@gnu.org; Fri, 11 Jan 2019 16:33:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gi4QI-0002aX-MA for guix-patches@gnu.org; Fri, 11 Jan 2019 16:33:02 -0500 Subject: [bug#34046] [PATCH] gnu: qjackctl: Disable xunique. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:55703) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gi4PL-0007jX-Dh for guix-patches@gnu.org; Fri, 11 Jan 2019 16:32:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gi4KC-0004UK-TL for guix-patches@gnu.org; Fri, 11 Jan 2019 16:26:45 -0500 Received: from mout.gmx.net ([212.227.15.19]:55225) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gi4KC-0004PN-Jd for guix-patches@gnu.org; Fri, 11 Jan 2019 16:26:44 -0500 From: Pierre Langlois Date: Fri, 11 Jan 2019 21:26:29 +0000 Message-ID: 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: 34046@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello Guix! For the past few months I've been unable to use qjackctl, it would freeze X all together on startup. It seems to happen only in tiling window manager though. But, it looks like people upstream have found the problem and disabling xunique fixes it! See https://github.com/rncbc/qjackctl/issues/13. The bug mentions qsynth too, I'll check if it has the same problem. Thanks! Pierre --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-qjackctl-Disable-xunique.patch Content-Transfer-Encoding: quoted-printable >From c1ab105660e8572d6711d408a8441d4b51327f25 Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Fri, 11 Jan 2019 20:55:42 +0000 Subject: [PATCH] gnu: qjackctl: Disable xunique. * gnu/packages/audio.scm (qjackctl)[arguments]: Pass "--disable-xunique" to configure-flags. --- gnu/packages/audio.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index d47dd90f56..c3761db6c3 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -18,6 +18,7 @@ ;;; Copyright =C2=A9 2018 Thorsten Wilms ;;; Copyright =C2=A9 2018 Eric Bavier ;;; Copyright =C2=A9 2018 Brendan Tildesley +;;; Copyright =C2=A9 2019 Pierre Langlois ;;; ;;; This file is part of GNU Guix. ;;; @@ -2154,7 +2155,11 @@ and ALSA.") "1rzzqa39a6llr52vjkjr0a86nc776kmr5xs52qqga8ms9697psz5")))) (build-system gnu-build-system) (arguments - '(#:tests? #f)) ; no check target + '(#: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"))) (inputs `(("jack" ,jack-1) ("alsa-lib" ,alsa-lib) --=20 2.20.1 --=-=-=--