From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2D86A158042 for ; Wed, 13 Nov 2024 18:50:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 528B5E086A; Wed, 13 Nov 2024 18:50:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 370D7E085A for ; Wed, 13 Nov 2024 18:50:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37A3E335CB9 for ; Wed, 13 Nov 2024 18:50:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9655118C4 for ; Wed, 13 Nov 2024 18:50:09 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1731523787.abf03787de2f71a3df1b5d9d85f9900c84c73fc5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/dnsproxy/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-proxy/dnsproxy/dnsproxy-1.17.ebuild X-VCS-Directories: net-proxy/dnsproxy/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: abf03787de2f71a3df1b5d9d85f9900c84c73fc5 X-VCS-Branch: master Date: Wed, 13 Nov 2024 18:50:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 47ea2920-4a96-48cd-8be6-77ce899fa45e X-Archives-Hash: 9251169855a5f7af1fb7d175091bddf8 commit: abf03787de2f71a3df1b5d9d85f9900c84c73fc5 Author: Sam James gentoo org> AuthorDate: Wed Nov 13 18:29:00 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Nov 13 18:49:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abf03787 net-proxy/dnsproxy: add comment for _GNU_SOURCE workaround Signed-off-by: Sam James gentoo.org> net-proxy/dnsproxy/dnsproxy-1.17.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net-proxy/dnsproxy/dnsproxy-1.17.ebuild b/net-proxy/dnsproxy/dnsproxy-1.17.ebuild index 88a520424713..d39f3894720d 100644 --- a/net-proxy/dnsproxy/dnsproxy-1.17.ebuild +++ b/net-proxy/dnsproxy/dnsproxy-1.17.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -23,6 +23,7 @@ PATCHES=( ) src_compile() { + # https://github.com/awaw/dnsproxy/commit/7eba35568c87a21a668722b3b04c113e9160e789 append-cppflags -D_GNU_SOURCE emake ${PN} }