diff options
author | Pierre Langlois <pierre.langlois@gmx.com> | 2019-03-26 22:54:08 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-27 00:09:38 +0100 |
commit | 4dcf221c8502e4f69f3ed9807936f64c3d1a44e8 (patch) | |
tree | 9db66a52739eef1677e03f1d8008c0cb8b4d3fa3 | |
parent | dd2f0cdba13e291946637c5e5ef2fefd5027d88d (diff) | |
download | guix-4dcf221c8502e4f69f3ed9807936f64c3d1a44e8.tar guix-4dcf221c8502e4f69f3ed9807936f64c3d1a44e8.tar.gz |
gnu: qjackctl: Re-enable xunique.
Version 0.5.6 of qjackctl appears to have fixed the xunique
bug that was causing X hanging when using tiling window managers.
See https://github.com/rncbc/qjackctl/blob/d54a1da43fa197da04d676a110f36a1d4c062252/ChangeLog#L9
* gnu/packages/audio.scm (qjackctl)[arguments]: Remove "--disable-xunique"
from configure-flags.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
-rw-r--r-- | gnu/packages/audio.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index a38e77c996..aa99382f79 100644 --- 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) |