Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3839584D69 for ; Thu, 21 Sep 2023 09:22:29 +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 DHwARyKg7y2F for ; Thu, 21 Sep 2023 09:22:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id BDDA884D3C for ; Thu, 21 Sep 2023 09:22:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B7013FBDB; Thu, 21 Sep 2023 09:22:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1695288148920" MIME-Version: 1.0 Date: Thu, 21 Sep 2023 09:22:28 +0000 From: "Paolo Vincenzo Olivo" Subject: CVS commit: pkgsrc/databases/libpqxx To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: vins@netbsd.org X-Mailer: log_accum Message-Id: <20230921092228.B7013FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1695288148920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: vins Date: Thu Sep 21 09:22:28 UTC 2023 Modified Files: pkgsrc/databases/libpqxx: Makefile Log Message: databases/libpqxx: force C++17 standard to fix build. To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/databases/libpqxx/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1695288148920 Content-Disposition: inline Content-Length: 637 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/libpqxx/Makefile diff -u pkgsrc/databases/libpqxx/Makefile:1.41 pkgsrc/databases/libpqxx/Makefile:1.42 --- pkgsrc/databases/libpqxx/Makefile:1.41 Fri Sep 1 10:49:07 2023 +++ pkgsrc/databases/libpqxx/Makefile Thu Sep 21 09:22:28 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2023/09/01 10:49:07 nia Exp $ +# $NetBSD: Makefile,v 1.42 2023/09/21 09:22:28 vins Exp $ DISTNAME= libpqxx-7.7.4 PKGREVISION= 1 @@ -18,6 +18,7 @@ GNU_CONFIGURE= yes USE_TOOLS+= gmake pkg-config USE_CXX_FEATURES+= c++17 +FORCE_CXX_STD= c++17 PYTHON_FOR_BUILD_ONLY= yes REPLACE_PYTHON+= tools/m4esc.py --_----------=_1695288148920--