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 353E7159C96 for ; Thu, 25 Jul 2024 09:17:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 646F3E2A5B; Thu, 25 Jul 2024 09:17:51 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 40147E2A5B for ; Thu, 25 Jul 2024 09:17:51 +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 17754335DEB for ; Thu, 25 Jul 2024 09:17:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FB541B89 for ; Thu, 25 Jul 2024 09:17:47 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1721899065.8bda632b707207572f7e2b2ba28dac4dfa8dec38.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libb2/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/libb2/libb2-0.98.1-r3.ebuild X-VCS-Directories: app-crypt/libb2/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 8bda632b707207572f7e2b2ba28dac4dfa8dec38 X-VCS-Branch: master Date: Thu, 25 Jul 2024 09:17:47 +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: da992fc2-ee2a-4745-b074-f8704116b28c X-Archives-Hash: d9e9daa66e70239c2ee799708d33b2b4 commit: 8bda632b707207572f7e2b2ba28dac4dfa8dec38 Author: Fabian Groffen gentoo org> AuthorDate: Thu Jul 25 09:16:27 2024 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Jul 25 09:17:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bda632b app-crypt/libb2-0.98.1-r3: fix compilation on Solaris This may have broken after an OpenIndiana update, or compiler update. Make sure memset_s can be found both during configure and compilation. Signed-off-by: Fabian Groffen gentoo.org> app-crypt/libb2/libb2-0.98.1-r3.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-crypt/libb2/libb2-0.98.1-r3.ebuild b/app-crypt/libb2/libb2-0.98.1-r3.ebuild index f810cc600ecf..0137d18d8f28 100644 --- a/app-crypt/libb2/libb2-0.98.1-r3.ebuild +++ b/app-crypt/libb2/libb2-0.98.1-r3.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools multilib-minimal toolchain-funcs +inherit autotools multilib-minimal toolchain-funcs flag-o-matic DESCRIPTION="C library providing BLAKE2b, BLAKE2s, BLAKE2bp, BLAKE2sp" HOMEPAGE="https://github.com/BLAKE2/libb2" @@ -40,6 +40,8 @@ src_prepare() { sed -i -e 's/ == / = /' configure.ac || die # https://github.com/BLAKE2/libb2/pull/28 echo 'libb2_la_LDFLAGS = -no-undefined' >> src/Makefile.am || die + # make memset_s available + [[ ${CHOST} == *-solaris* ]] && append-cppflags -D__STDC_WANT_LIB_EXT1__=1 eautoreconf # upstream doesn't make releases }