Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E4DCD84E67 for ; Fri, 21 Jul 2023 08:30:48 +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 dSZ02EnVgbsS for ; Fri, 21 Jul 2023 08:30:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3AEA184CEB for ; Fri, 21 Jul 2023 08:30:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 365ECFBDB; Fri, 21 Jul 2023 08:30:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1689928248221410" MIME-Version: 1.0 Date: Fri, 21 Jul 2023 08:30:48 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/ogre To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230721083048.365ECFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1689928248221410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Jul 21 08:30:48 UTC 2023 Modified Files: pkgsrc/devel/ogre: Makefile buildlink3.mk Log Message: ogre: Require a compiler that supports put_time. To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 pkgsrc/devel/ogre/Makefile cvs rdiff -u -r1.31 -r1.32 pkgsrc/devel/ogre/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1689928248221410 Content-Disposition: inline Content-Length: 1355 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ogre/Makefile diff -u pkgsrc/devel/ogre/Makefile:1.50 pkgsrc/devel/ogre/Makefile:1.51 --- pkgsrc/devel/ogre/Makefile:1.50 Tue Jul 18 14:11:17 2023 +++ pkgsrc/devel/ogre/Makefile Fri Jul 21 08:30:48 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.50 2023/07/18 14:11:17 nia Exp $ +# $NetBSD: Makefile,v 1.51 2023/07/21 08:30:48 nia Exp $ DISTNAME= ogre-1.12.11 PKGREVISION= 1 @@ -16,7 +16,7 @@ USE_TOOLS+= pkg-config USE_LANGUAGES= c c++ USE_LANGUAGES+= gnu++11 # uses alloca() -USE_CXX_FEATURES+= c++11 +USE_CXX_FEATURES+= c++11 put_time # Unsupported on some pkgsrc platforms (e.g. NetBSD). # It attempts to enable them solely based on the compiler version, which Index: pkgsrc/devel/ogre/buildlink3.mk diff -u pkgsrc/devel/ogre/buildlink3.mk:1.31 pkgsrc/devel/ogre/buildlink3.mk:1.32 --- pkgsrc/devel/ogre/buildlink3.mk:1.31 Mon Mar 1 12:12:14 2021 +++ pkgsrc/devel/ogre/buildlink3.mk Fri Jul 21 08:30:48 2023 @@ -1,10 +1,12 @@ -# $NetBSD: buildlink3.mk,v 1.31 2021/03/01 12:12:14 nia Exp $ +# $NetBSD: buildlink3.mk,v 1.32 2023/07/21 08:30:48 nia Exp $ BUILDLINK_TREE+= ogre .if !defined(OGRE_BUILDLINK3_MK) OGRE_BUILDLINK3_MK:= +USE_CXX_FEATURES+= c++11 put_time + BUILDLINK_API_DEPENDS.ogre+= ogre>=1.12 BUILDLINK_ABI_DEPENDS.ogre+= ogre>=1.12 BUILDLINK_PKGSRCDIR.ogre?= ../../devel/ogre --_----------=_1689928248221410--