From patchwork Sun Aug 16 10:29:15 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 3329 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4BTtkM2T4rz3x0m for ; Sun, 16 Aug 2020 10:31:07 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4BTtjj2ktGzxJ; Sun, 16 Aug 2020 10:30:33 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4BTtjc0HQpz30Yd; Sun, 16 Aug 2020 10:30:28 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4BTtjW71Pgz30X4 for ; Sun, 16 Aug 2020 10:30:23 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 4BTtjW65BLzlp; Sun, 16 Aug 2020 10:30:23 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1597573823; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=UMjDohNvOp0Pmc95yM9OBOb1qLhh+kTgfWXHIDVrB6g=; b=mxzqo7o+fHUber4dNiI33IlJrzuTgGidbRZiWi8rGTDaG/AIvwEQbOK9A/5HCrXf+/PiES +dG9qTbf877Lm4Cg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1597573823; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=UMjDohNvOp0Pmc95yM9OBOb1qLhh+kTgfWXHIDVrB6g=; b=vZBdeUurQ0QgVHEQT5wTBnTWKOsvLiqnSzK57kkeHYLXt6LUD+UAG2LsDDOtGuVMh2p2bd U2k8aHO81C/Mp5wq+DNEz8f7boAtqvLUI5H+zJ+TH1f25HwGvuFCg89lKtSjyOjJJm05qF Ycnv5AKACSel2S4Py0Ur9Tb32F5/NDqAYbKR8cRHUJwtCf1cgCkeUizQUnQ8xWuXas3h4P cgdrSrOqOVoZtJnmT9p4YIiLfStbkIPXmyC9BzE6jFhy5+umQTD+mbXyZQUxPWSs8zAVM7 +dfNB1Ik7epNvZG4l7jgE8RfQqyHPKjV5cn0eiwILSBY9pA+qeKl/V89/9XZSg== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 24/62] collectd: Fix build with GCC 10 Date: Sun, 16 Aug 2020 10:29:15 +0000 Message-Id: <20200816102953.3881-24-michael.tremer@ipfire.org> In-Reply-To: <20200816102953.3881-1-michael.tremer@ipfire.org> References: <20200816102953.3881-1-michael.tremer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Signed-off-by: Michael Tremer --- lfs/collectd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs/collectd b/lfs/collectd index ad780f50d..e3fcc1013 100644 --- a/lfs/collectd +++ b/lfs/collectd @@ -36,7 +36,7 @@ PROG = collectd DEPS = -CFLAGS += -Wno-error=deprecated-declarations +CFLAGS += -fcommon -Wno-error=deprecated-declarations ############################################################################### # Top-level Rules