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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 403B1158041 for ; Fri, 8 Mar 2024 18:34:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 874B2E29D1; Fri, 8 Mar 2024 18:34:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DDFF7E29D1 for ; Fri, 8 Mar 2024 18:34:15 +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 20B57335DC5 for ; Fri, 8 Mar 2024 18:34:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43398B3D for ; Fri, 8 Mar 2024 18:34:13 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1709922843.31fffa9cf2491c4353f867ca66adadf8bf1e3e2a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/openexr/, media-libs/openexr/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/openexr/files/openexr-3.1.5-musl-i386.patch media-libs/openexr/openexr-3.1.5-r1.ebuild X-VCS-Directories: media-libs/openexr/files/ media-libs/openexr/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 31fffa9cf2491c4353f867ca66adadf8bf1e3e2a X-VCS-Branch: master Date: Fri, 8 Mar 2024 18:34:13 +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: d124b21b-42fd-4562-a984-2bda968eac65 X-Archives-Hash: 2041705df7026c5b68c9cde8c490f744 commit: 31fffa9cf2491c4353f867ca66adadf8bf1e3e2a Author: Cristian Othón Martínez Vera cfuga mx> AuthorDate: Mon Apr 10 17:15:53 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 8 18:34:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31fffa9c media-libs/openexr: fix x86 musl build for version 3.1.5 Signed-off-by: Cristian Othón Martínez Vera cfuga.mx> Signed-off-by: Sam James gentoo.org> .../openexr/files/openexr-3.1.5-musl-i386.patch | 19 +++++++++++++++++++ media-libs/openexr/openexr-3.1.5-r1.ebuild | 1 + 2 files changed, 20 insertions(+) diff --git a/media-libs/openexr/files/openexr-3.1.5-musl-i386.patch b/media-libs/openexr/files/openexr-3.1.5-musl-i386.patch new file mode 100644 index 000000000000..2b7a31ac694d --- /dev/null +++ b/media-libs/openexr/files/openexr-3.1.5-musl-i386.patch @@ -0,0 +1,19 @@ +--- a/src/lib/Iex/IexMathFpu.cpp ++++ b/src/lib/Iex/IexMathFpu.cpp +@@ -251,14 +251,14 @@ + inline void + restoreControlRegs (const ucontext_t & ucon, bool clearExceptions) + { +-# if defined(__GLIBC__) && defined(__i386__) ++# if defined(__linux__) && defined(__i386__) + setCw ((ucon.uc_mcontext.fpregs->cw & cwRestoreMask) | cwRestoreVal); + #else + setCw ((ucon.uc_mcontext.fpregs->cwd & cwRestoreMask) | cwRestoreVal); + # endif + + _fpstate* kfp = reinterpret_cast<_fpstate*> (ucon.uc_mcontext.fpregs); +-# if defined(__GLIBC__) && defined(__i386__) ++# if defined(__linux__) && defined(__i386__) + setMxcsr (kfp->magic == 0 ? kfp->mxcsr : 0, clearExceptions); + #else + setMxcsr (kfp->mxcsr, clearExceptions); diff --git a/media-libs/openexr/openexr-3.1.5-r1.ebuild b/media-libs/openexr/openexr-3.1.5-r1.ebuild index a5039301aed5..8ec80d3071e3 100644 --- a/media-libs/openexr/openexr-3.1.5-r1.ebuild +++ b/media-libs/openexr/openexr-3.1.5-r1.ebuild @@ -32,6 +32,7 @@ PATCHES=( "${FILESDIR}"/${PN}-3.1.1-0003-disable-failing-test.patch "${FILESDIR}"/${P}-Add-missing-include-cstdint-required-by-gcc-13-1264.patch "${FILESDIR}"/${P}-add-missed-include-cstdint-statement.patch + "${FILESDIR}"/${P}-musl-i386.patch ) DOCS=( CHANGES.md GOVERNANCE.md PATENTS README.md SECURITY.md docs/SymbolVisibility.md )