guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: mumble: Disable statistic gathering by defau


From: guix-commits
Subject: branch master updated: gnu: mumble: Disable statistic gathering by default.
Date: Tue, 10 Mar 2020 04:55:25 -0400

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ba726eb  gnu: mumble: Disable statistic gathering by default.
ba726eb is described below

commit ba726ebc2d1e7df42edc061d168488791b15a497
Author: Michael Rohleder <address@hidden>
AuthorDate: Tue Mar 10 00:54:02 2020 +0100

    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 <address@hidden>
---
 gnu/packages/telephony.scm | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm
index a645c58..fe6c230 100644
--- a/gnu/packages/telephony.scm
+++ b/gnu/packages/telephony.scm
@@ -15,6 +15,7 @@
 ;;; Copyright © 2019 Jan Wielkiewicz <address@hidden>
 ;;; Copyright © 2019 Ivan Vilata i Balaguer <address@hidden>
 ;;; Copyright © 2020 Brett Gilio <address@hidden>
+;;; Copyright © 2020 Michael Rohleder <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -462,6 +463,12 @@ address of one of the participants.")
              (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"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]