Received: by mail.netbsd.org (Postfix, from userid 605) id AE70F84E6B; Fri, 5 Aug 2022 14:08:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E686984D2C for ; Fri, 5 Aug 2022 14:08:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 1n1ephj9L2D6 for ; Fri, 5 Aug 2022 14:08:50 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 79E0D84CD9 for ; Fri, 5 Aug 2022 14:08:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 72C9CFB1A; Fri, 5 Aug 2022 14:08:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1659708530274390" MIME-Version: 1.0 Date: Fri, 5 Aug 2022 14:08:50 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/net/dnsdist To: pkgsrc-changes@NetBSD.org Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20220805140850.72C9CFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1659708530274390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Fri Aug 5 14:08:50 UTC 2022 Added Files: pkgsrc/net/dnsdist: hacks.mk Log Message: net/dnsdist: make this build on powerpc where -latomic is needed. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/net/dnsdist/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1659708530274390 Content-Disposition: inline Content-Length: 629 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/net/dnsdist/hacks.mk diff -u /dev/null pkgsrc/net/dnsdist/hacks.mk:1.1 --- /dev/null Fri Aug 5 14:08:50 2022 +++ pkgsrc/net/dnsdist/hacks.mk Fri Aug 5 14:08:50 2022 @@ -0,0 +1,14 @@ +# $NetBSD: hacks.mk,v 1.1 2022/08/05 14:08:50 he Exp $ + +.if !defined(NET_DNSDIST_HACKS_MK) +NET_DNSDIST_HACKS_MK= defined + +# [Fri Aug 5 14:57:31 CEST 2022 : he] + +# On NetBSD/powerpc, use devel/libatomic to get 8-byte atomics. +.if ${MACHINE_ARCH} == "powerpc" && ${OPSYS} == "NetBSD" +PKG_HACKS+= powerpc-atomics +.include "../../devel/libatomic/buildlink3.mk" +.endif + +.endif # NET_DNSDIST_HACKS_MK --_----------=_1659708530274390--