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 661AC158020 for ; Tue, 27 Dec 2022 16:06:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94825E086D; Tue, 27 Dec 2022 16:06:48 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F5E9E086D for ; Tue, 27 Dec 2022 16:06:48 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8432633BE6C for ; Tue, 27 Dec 2022 16:06:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17DCB7F1 for ; Tue, 27 Dec 2022 16:06:46 +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: <1672157190.0cc5fdf16454cfc371bdd50472c098fe01b6443b.sam@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: wrappers/site/ X-VCS-Repository: proj/crossdev X-VCS-Files: wrappers/site/linux X-VCS-Directories: wrappers/site/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0cc5fdf16454cfc371bdd50472c098fe01b6443b X-VCS-Branch: master Date: Tue, 27 Dec 2022 16:06:46 +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: 921e688e-1fb3-4da1-99d0-e1888b29adcf X-Archives-Hash: 001672a6e9113d82d7e765513e0d7e91 commit: 0cc5fdf16454cfc371bdd50472c098fe01b6443b Author: James Le Cuirot gentoo org> AuthorDate: Tue Dec 27 15:51:47 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Dec 27 16:06:30 2022 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=0cc5fdf1 config.site: Fix tzset in Python with autoconf override The Python build assumes that tzset is broken when cross-compiling. We can assume it works under Linux. Signed-off-by: James Le Cuirot gentoo.org> Closes: https://github.com/gentoo/crossdev/pull/8 Signed-off-by: Sam James gentoo.org> wrappers/site/linux | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wrappers/site/linux b/wrappers/site/linux index e97d26b..cb6b191 100644 --- a/wrappers/site/linux +++ b/wrappers/site/linux @@ -58,3 +58,6 @@ 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} + +# Python +ac_cv_working_tzset=${ac_cv_working_tzset=yes}