Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 7E6961A9239 for ; Sun, 19 Dec 2021 15:12:30 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8E85584EA0; Sun, 19 Dec 2021 15:12:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C9C4884D57 for ; Sun, 19 Dec 2021 15:12:28 +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 RSnjBmanNnch for ; Sun, 19 Dec 2021 15:12:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5EC2E84D22 for ; Sun, 19 Dec 2021 15:12:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5C1BDFAEC; Sun, 19 Dec 2021 15:12:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163992674887770" MIME-Version: 1.0 Date: Sun, 19 Dec 2021 15:12:28 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20211219151228.5C1BDFAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163992674887770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sun Dec 19 15:12:28 UTC 2021 Modified Files: pkgsrc/mk: atomic64.mk Log Message: mk/atomic64.mk: CFLAGS is added to CXXFLAGS automatically To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/mk/atomic64.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163992674887770 Content-Disposition: inline Content-Length: 670 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/atomic64.mk diff -u pkgsrc/mk/atomic64.mk:1.5 pkgsrc/mk/atomic64.mk:1.6 --- pkgsrc/mk/atomic64.mk:1.5 Mon Aug 2 18:37:08 2021 +++ pkgsrc/mk/atomic64.mk Sun Dec 19 15:12:28 2021 @@ -1,4 +1,4 @@ -# $NetBSD: atomic64.mk,v 1.5 2021/08/02 18:37:08 jklos Exp $ +# $NetBSD: atomic64.mk,v 1.6 2021/12/19 15:12:28 ryoon Exp $ # # This Makefile fragment is included by packages that require 64-bit atomic # operations, and will attempt to set the appropriate architecture-specific @@ -13,7 +13,6 @@ ATOMIC64_MK:= .if ${MACHINE_ARCH} == "i386" . if empty(CFLAGS:M*march=*) CFLAGS+= -march=i586 -CXXFLAGS+= -march=i586 . endif .endif --_----------=_163992674887770--