From mboxrd@z Thu Jan 1 00:00:00 1970 From: mike@rohleder.de Subject: bug#25201: Re bug#25201: [PATCH] gnu: Patch mumble to disable statistic gathering by default. Date: Tue, 10 Mar 2020 00:54:02 +0100 Message-ID: <20200309235402.24941-1-mike@rohleder.de> References: <20200309104242.GH1423@E5400> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:39479) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jBSpU-0006jK-CL for bug-guix@gnu.org; Mon, 09 Mar 2020 20:33:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jBSpT-0007Xv-2s for bug-guix@gnu.org; Mon, 09 Mar 2020 20:33:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:45680) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jBSpR-0007W1-SY for bug-guix@gnu.org; Mon, 09 Mar 2020 20:33:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jBSpR-0007Dr-OP for bug-guix@gnu.org; Mon, 09 Mar 2020 20:33:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20200309104242.GH1423@E5400> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane-mx.org@gnu.org Sender: "bug-Guix" To: 25201@debbugs.gnu.org * disable statistic gathering by default. see --- gnu/packages/telephony.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm index a645c58562..3d0384c8bc 100644 --- a/gnu/packages/telephony.scm +++ b/gnu/packages/telephony.scm @@ -462,6 +462,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 + (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" -- 2.25.1