From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DDDBA1581D3 for ; Wed, 22 May 2024 16:46:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0AE89E2A32; Wed, 22 May 2024 16:46:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D9239E2A32 for ; Wed, 22 May 2024 16:46:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C9C3134027D for ; Wed, 22 May 2024 16:46:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 38E4E1709 for ; Wed, 22 May 2024 16:46:15 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1716396350.31586e0747139c56007fbddc660a04e453271843.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libvisio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libvisio/libvisio-0.1.7.ebuild media-libs/libvisio/libvisio-9999.ebuild X-VCS-Directories: media-libs/libvisio/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 31586e0747139c56007fbddc660a04e453271843 X-VCS-Branch: master Date: Wed, 22 May 2024 16:46:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 112481c8-1e1f-4609-8def-ff46c5b12b55 X-Archives-Hash: de373f1120ee7d5398ff62c813ea0740 commit: 31586e0747139c56007fbddc660a04e453271843 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed May 22 16:34:24 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed May 22 16:45:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31586e07 media-libs/libvisio: Fix build w/ ICU-75 Closes: https://bugs.gentoo.org/932496 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/libvisio/libvisio-0.1.7.ebuild | 4 ++-- media-libs/libvisio/libvisio-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/media-libs/libvisio/libvisio-0.1.7.ebuild b/media-libs/libvisio/libvisio-0.1.7.ebuild index 6559e28557cd..3ca3071ebb83 100644 --- a/media-libs/libvisio/libvisio-0.1.7.ebuild +++ b/media-libs/libvisio/libvisio-0.1.7.ebuild @@ -45,8 +45,8 @@ src_prepare() { } src_configure() { - # bug 619688 - append-cxxflags -std=c++14 + # bug 619688, 932496 + append-cxxflags -std=c++17 local myeconfargs=( $(use_with doc docs) diff --git a/media-libs/libvisio/libvisio-9999.ebuild b/media-libs/libvisio/libvisio-9999.ebuild index afb540c46a51..f9f22b09cf32 100644 --- a/media-libs/libvisio/libvisio-9999.ebuild +++ b/media-libs/libvisio/libvisio-9999.ebuild @@ -45,8 +45,8 @@ src_prepare() { } src_configure() { - # bug 619688 - append-cxxflags -std=c++14 + # bug 619688, 932496 + append-cxxflags -std=c++17 local myeconfargs=( $(use_with doc docs)