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 90D66158089 for ; Wed, 6 Sep 2023 10:11:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1A8E2BC016; Wed, 6 Sep 2023 10:11:04 +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 9DA972BC016 for ; Wed, 6 Sep 2023 10:11:04 +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 E6A54335C56 for ; Wed, 6 Sep 2023 10:11:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36DCB1120 for ; Wed, 6 Sep 2023 10:11:02 +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: <1693994992.4f820e90165cb71b87c468dcd05b34c35e08898f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/curl/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/curl/curl-8.2.1.ebuild net-misc/curl/curl-9999.ebuild X-VCS-Directories: net-misc/curl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4f820e90165cb71b87c468dcd05b34c35e08898f X-VCS-Branch: master Date: Wed, 6 Sep 2023 10:11:02 +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: 9e29ee24-4cdc-4ce4-93e9-a78d04a82cec X-Archives-Hash: 52edd0e143e808f4ace02d123ee78a99 commit: 4f820e90165cb71b87c468dcd05b34c35e08898f Author: Sam James gentoo org> AuthorDate: Wed Sep 6 10:09:51 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 6 10:09:52 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f820e90 net-misc/curl: disable pthreads for mingw cross Can't use kernel_Winnt (at least at the moment) as it's an implicit IUSE only in embedded profiles... Bug: https://bugs.gentoo.org/910605 Signed-off-by: Sam James gentoo.org> net-misc/curl/curl-8.2.1.ebuild | 6 ++++++ net-misc/curl/curl-9999.ebuild | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/net-misc/curl/curl-8.2.1.ebuild b/net-misc/curl/curl-8.2.1.ebuild index 72c9069bc754..872fa57afa80 100644 --- a/net-misc/curl/curl-8.2.1.ebuild +++ b/net-misc/curl/curl-8.2.1.ebuild @@ -276,6 +276,12 @@ multilib_src_configure() { ) fi + if [[ ${CHOST} == *mingw* ]] ; then + myconf+=( + --disable-pthreads + ) + fi + ECONF_SOURCE="${S}" econf "${myconf[@]}" if ! multilib_is_native_abi; then diff --git a/net-misc/curl/curl-9999.ebuild b/net-misc/curl/curl-9999.ebuild index 63a8fa2ec57b..044db08d02b5 100644 --- a/net-misc/curl/curl-9999.ebuild +++ b/net-misc/curl/curl-9999.ebuild @@ -282,6 +282,12 @@ multilib_src_configure() { ) fi + if [[ ${CHOST} == *mingw* ]] ; then + myconf+=( + --disable-pthreads + ) + fi + ECONF_SOURCE="${S}" econf "${myconf[@]}" if ! multilib_is_native_abi; then