Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=n10e3MAa; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=BQgOnamN Received: by mail.netbsd.org (Postfix, from userid 605) id 8FFF784D74; Sat, 11 May 2024 15:45:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715442343; bh=gkY5++UcJqG+tp1u2WKwwkPFGjU3EEKSh2joDMmORig=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=n10e3MAabEDSxzU5+7g103KmZD/ZFSK1KKVHPLzxJ01GQMVBxsp5lZw6QZpyfRlH3 MIsRpytHCA7BvXwuE8mYu4TBUR6aWEQHSQ6PQFOg1Wmu+NSUawbL+jglIaMrYIcMmp TYuVodIEbIS02IFXPvP0jinTmIkZCUrRy4IE3ClI= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7FDBC84D66 for ; Sat, 11 May 2024 15:45:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id afTfkVIlN3WF for ; Sat, 11 May 2024 15:45:42 +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 C809884CC9 for ; Sat, 11 May 2024 15:45:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715442342; bh=gkY5++UcJqG+tp1u2WKwwkPFGjU3EEKSh2joDMmORig=; h=Date:From:Subject:To:Reply-To; b=BQgOnamNvggo4pisqCnhvmuA9IOKj4tDJbseQTKaey6dAQabT0X7m2QwYan6/Owfq cR8jlWnPbLP1yz5xxysVv/Bi4HeAoPscVZzWjOzKdPhtwsvTdc/CzJEaxeO4LWrVh/ bzu3u6garb/KHGmH0yJFfvtj+ByZGFK0mCIkKTV8= Received: by cvs.NetBSD.org (Postfix, from userid 500) id B6A09FA2C; Sat, 11 May 2024 15:45:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171544234193710" MIME-Version: 1.0 Date: Sat, 11 May 2024 15:45:41 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/graphics/luminance-hdr To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240511154541.B6A09FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171544234193710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat May 11 15:45:41 UTC 2024 Modified Files: pkgsrc/graphics/luminance-hdr: Makefile Log Message: luminance-hdr: needs C++14 now but still fails to build with boost 1.85 https://github.com/LuminanceHDR/LuminanceHDR/issues/283 To generate a diff of this commit: cvs rdiff -u -r1.92 -r1.93 pkgsrc/graphics/luminance-hdr/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171544234193710 Content-Disposition: inline Content-Length: 708 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/luminance-hdr/Makefile diff -u pkgsrc/graphics/luminance-hdr/Makefile:1.92 pkgsrc/graphics/luminance-hdr/Makefile:1.93 --- pkgsrc/graphics/luminance-hdr/Makefile:1.92 Sat Apr 6 08:05:50 2024 +++ pkgsrc/graphics/luminance-hdr/Makefile Sat May 11 15:45:41 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.92 2024/04/06 08:05:50 wiz Exp $ +# $NetBSD: Makefile,v 1.93 2024/05/11 15:45:41 wiz Exp $ DISTNAME= luminance-hdr-2.6.1.1 PKGREVISION= 8 @@ -12,6 +12,8 @@ COMMENT= GUI application that aims to pr LICENSE= gnu-gpl-v2 USE_LANGUAGES= c c++ +# "Boost.Math requires C++14" +FORCE_CXX_STD= c++14 USE_TOOLS+= pkg-config CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release --_----------=_171544234193710--