From patchwork Sun Aug 16 10:29:40 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 3353 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 4BTtlZ40m2z3x1D for ; Sun, 16 Aug 2020 10:32:10 +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 4BTtjv268tz10v; Sun, 16 Aug 2020 10:30:43 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4BTtjq5nCVz2yDF; Sun, 16 Aug 2020 10:30:39 +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 4BTtjp3N2Jz2yF5 for ; Sun, 16 Aug 2020 10:30:38 +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 4BTtjm4wGSz1G; Sun, 16 Aug 2020 10:30:36 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1597573836; 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=n+Kur/lWR62o7i6CUovMRyTyJEhNPyXd7dTolsfkBhs=; b=PBY3gWj4IeEb2NiUSxg//vrdHOsiQ8D3y3KWmTjRp5qlHN7cebTO4gP5axVTMfx4gacNji w6d44pQk4kiC90DA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1597573836; 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=n+Kur/lWR62o7i6CUovMRyTyJEhNPyXd7dTolsfkBhs=; b=dGkAgeYLrU+4bCcT4hgiFPp/cDpcsfHadd1icooo48OS0X2wGSz7DA75pB9PatupTyK5Wz Oq7LUFpoBGx0j/2J2a7k6BN90Cr47oL6bGDqCDJrgOUbnXvzx/Grx86Bm4cHlft1AnwxAE 3YCzGJStpnqnfVvVYR13f/HarzqaicrpRjzpC8dOCrLokxJATL0hdbu2Kra5ZRJvJ2Jc01 3dDtmTpc8W9kYy8cqWZi6KMHTJeN0Yolhi/70GGi94CKqJWNFWzbx9bNtiXLZzjRT+5AaZ j1mvqrOwoM2tWRaOqxRofaVtimZnq6Uc6GnfX25v7Pr3JAK5g6huAF7r3pCtLA== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 49/62] xinetd: Fix build against glibc 2.32 (without RPC) Date: Sun, 16 Aug 2020 10:29:40 +0000 Message-Id: <20200816102953.3881-49-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/xinetd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lfs/xinetd b/lfs/xinetd index d592c90ab..9e14279d4 100644 --- a/lfs/xinetd +++ b/lfs/xinetd @@ -34,6 +34,8 @@ TARGET = $(DIR_INFO)/$(THISAPP) PROG = xinetd PAK_VER = 1 +CFLAGS += -fcommon -I/usr/include/tirpc -Wl,-ltirpc + ############################################################################### # Top-level Rules ###############################################################################