Received: by mail.netbsd.org (Postfix, from userid 605) id A224184E4C; Tue, 22 Sep 2020 22:18:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2B9B284D6A for ; Tue, 22 Sep 2020 22:18:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id TS5tRLazI2rK for ; Tue, 22 Sep 2020 22:18:55 +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 8480284CEE for ; Tue, 22 Sep 2020 22:18:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7DE18FB28; Tue, 22 Sep 2020 22:18:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1600813135167990" MIME-Version: 1.0 Date: Tue, 22 Sep 2020 22:18:55 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/databases/mysql57-server To: pkgsrc-changes@NetBSD.org Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20200922221855.7DE18FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1600813135167990 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Tue Sep 22 22:18:55 UTC 2020 Added Files: pkgsrc/databases/mysql57-server: hacks.mk Log Message: On powerpc, pull in devel/libatomic, so that this package builds. Build fix only for this platform; detection for -latomic is already there. OK'ed by gdt@ To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/databases/mysql57-server/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1600813135167990 Content-Disposition: inline Content-Length: 589 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/databases/mysql57-server/hacks.mk diff -u /dev/null pkgsrc/databases/mysql57-server/hacks.mk:1.1 --- /dev/null Tue Sep 22 22:18:55 2020 +++ pkgsrc/databases/mysql57-server/hacks.mk Tue Sep 22 22:18:55 2020 @@ -0,0 +1,12 @@ +# $NetBSD: hacks.mk,v 1.1 2020/09/22 22:18:55 he Exp $ + +.if !defined(MYSQL_HACKS_MK) +MYSQL_HACKS_MK= defined + +# [Tue Sep 22 21:38:02 CEST 2020 : he] +# On NetBSD/powerpc, use devel/libatomic to get 8-byte atomics. +.if ${MACHINE_ARCH} == "powerpc" +.include "../../devel/libatomic/buildlink3.mk" +.endif + +.endif # MYSQL_HACKS_MK --_----------=_1600813135167990--