Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 42BBA84E63 for ; Fri, 1 Sep 2023 11:37:50 +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 WQ0VC4PqZ80h for ; Fri, 1 Sep 2023 11:37:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9A70E84DC2 for ; Fri, 1 Sep 2023 11:37:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 752DAFBDB; Fri, 1 Sep 2023 11:34:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693568099259800" MIME-Version: 1.0 Date: Fri, 1 Sep 2023 11:34:59 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/math/flann-lib To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230901113459.752DAFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693568099259800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Sep 1 11:34:59 UTC 2023 Modified Files: pkgsrc/math/flann-lib: Makefile Log Message: flann-lib: Assumes compiler defaults to C++11 To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/math/flann-lib/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693568099259800 Content-Disposition: inline Content-Length: 710 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/flann-lib/Makefile diff -u pkgsrc/math/flann-lib/Makefile:1.5 pkgsrc/math/flann-lib/Makefile:1.6 --- pkgsrc/math/flann-lib/Makefile:1.5 Thu Aug 31 10:22:29 2023 +++ pkgsrc/math/flann-lib/Makefile Fri Sep 1 11:34:59 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2023/08/31 10:22:29 adam Exp $ +# $NetBSD: Makefile,v 1.6 2023/09/01 11:34:59 nia Exp $ DISTNAME= flann-1.9.2 PKGNAME= ${DISTNAME:S/-/-lib-/} @@ -23,6 +23,9 @@ CMAKE_ARGS+= -DBUILD_MATLAB_BINDINGS=OFF CMAKE_ARGS+= -DUSE_MPI=OFF CMAKE_ARGS+= -DBUILD_CUDA_LIB=OFF +FORCE_CXX_STD= c++11 +USE_CXX_FEATURES+= c++11 + PKGCONFIG_OVERRIDE+= cmake/flann.pc.in .include "../../archivers/lz4/buildlink3.mk" --_----------=_1693568099259800--