From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 6DF841581EE for ; Wed, 09 Apr 2025 16:35:40 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 5903634327F for ; Wed, 09 Apr 2025 16:35:40 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 4F3541102B2; Wed, 09 Apr 2025 16:35:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 bobolink.gentoo.org (Postfix) with ESMTPS id 45BFD1102B2 for ; Wed, 09 Apr 2025 16:35:39 +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 E5FD3343163 for ; Wed, 09 Apr 2025 16:35:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4637E159F for ; Wed, 09 Apr 2025 16:35:37 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1744202778.c60ec5e000ffdfe1af5d458ce8e0ce6d3c0f0e0c.jsmolic@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: wrappers/site/ X-VCS-Repository: proj/crossdev X-VCS-Files: wrappers/site/linux-gnu wrappers/site/linux-musl X-VCS-Directories: wrappers/site/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: c60ec5e000ffdfe1af5d458ce8e0ce6d3c0f0e0c X-VCS-Branch: master Date: Wed, 09 Apr 2025 16:35:37 +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: f8e06244-c049-4c93-9cb7-aaca15b0088f X-Archives-Hash: 7c9a56dc0cff3cbc8eb149ea6e32d069 commit: c60ec5e000ffdfe1af5d458ce8e0ce6d3c0f0e0c Author: Jakov Smolić gentoo org> AuthorDate: Wed Apr 9 01:42:24 2025 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Wed Apr 9 12:46:18 2025 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=c60ec5e0 wrappers: linux-{gnu,musl}: set gl_cv_func_strcasecmp_works for gnulib Recent gnulib added a check for strcasecmp which the build system tries to execute when cross-compiling, so we can set the corresponding variable to avoid running in until its fixed upstream. Closes: https://bugs.gentoo.org/953104 Signed-off-by: Jakov Smolić gentoo.org> wrappers/site/linux-gnu | 4 ++++ wrappers/site/linux-musl | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/wrappers/site/linux-gnu b/wrappers/site/linux-gnu index 882c26d..7536fdd 100644 --- a/wrappers/site/linux-gnu +++ b/wrappers/site/linux-gnu @@ -86,3 +86,7 @@ screen_cv_sys_select_broken_retval=${screen_cv_sys_select_broken_retval=no} screen_cv_sys_sockets_nofs=${screen_cv_sys_sockets_nofs=no} screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes} screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes} + +# gnulib (nano et al.) +# https://bugs.gentoo.org/953104 +gl_cv_func_strcasecmp_works=yes diff --git a/wrappers/site/linux-musl b/wrappers/site/linux-musl index d126046..4751491 100644 --- a/wrappers/site/linux-musl +++ b/wrappers/site/linux-musl @@ -2,3 +2,7 @@ # bug #705800 and many others ac_cv_func_malloc_0_nonnull=yes ac_cv_func_realloc_0_nonnull=yes + +# gnulib (nano et al.) +# https://bugs.gentoo.org/953104 +gl_cv_func_strcasecmp_works=yes