mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: mumble: Disable statistic gathering by default.
Fixes <https://bugs.gnu.org/25201> * gnu/packages/telephone.scm (mumble)[arguments]: Add phase to disable statistic gathering by default. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
43d4eb8fc4
commit
ba726ebc2d
1 changed files with 7 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
|||
;;; Copyright © 2019 Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
|
||||
;;; Copyright © 2019 Ivan Vilata i Balaguer <ivan@selidor.net>
|
||||
;;; Copyright © 2020 Brett Gilio <brettg@gnu.org>
|
||||
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -462,6 +463,12 @@ (define-public mumble
|
|||
(substitute* "src/mumble/TextToSpeech_unix.cpp"
|
||||
(("libspeechd.h") "speech-dispatcher/libspeechd.h"))
|
||||
#t))
|
||||
;; disable statistic gathering by default. see <https://bugs.gnu.org/25201>
|
||||
(add-before 'configure 'fix-statistic-gathering-default
|
||||
(lambda _
|
||||
(substitute* "src/mumble/Settings.cpp"
|
||||
(("bUsage = true;") "bUsage = false;"))
|
||||
#t))
|
||||
(add-before 'install 'disable-murmur-ice
|
||||
(lambda _
|
||||
(substitute* "scripts/murmur.ini.system"
|
||||
|
|
Loading…
Reference in a new issue