From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: build failures in mingw64 Date: Mon, 10 Jul 2023 15:28:33 +0300 Message-ID: <83v8es7xxq.fsf@gnu.org> References: <1089214782.2847848.1688889913507@mail1.libero.it> <83351xbh7y.fsf@gnu.org> <190474050.3639024.1688895205348@mail1.libero.it> <83v8et9vs9.fsf@gnu.org> <2ed1361e-9cf1-fb25-14bf-ee634aaf9382@cs.ucla.edu> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="23149"; mail-complaints-to="usenet@ciao.gmane.io" Cc: angelo.g0@libero.it, emacs-devel@gnu.org To: Paul Eggert Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Jul 10 14:29:58 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qIq1d-0005lz-Rd for ged-emacs-devel@m.gmane-mx.org; Mon, 10 Jul 2023 14:29:58 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qIq0C-0008Me-AE; Mon, 10 Jul 2023 08:28:28 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qIq0A-0008Kh-49 for emacs-devel@gnu.org; Mon, 10 Jul 2023 08:28:26 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qIq08-0000nE-RO; Mon, 10 Jul 2023 08:28:24 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=w0nnjzYRtIeQsWqWHMXE8dlRnQBWwgfKhWFKmM02Jn0=; b=FiZC1Sz3W+PR mJsetoQWlaw2fIh7Y/xxL0NznjvqJHQzq/11b52f5W5AUiDHntihd59q0mtIdhJjubX/Q3EozwMB2 0F09gjTQkkiuFYDfGVBnYU/cmb+yMmgApbSMGLRkHofiTxBRbewyv8iNNnmZrL3clOS7yTT6xrMOF WX6gLKj72o+m9hmsvABHr6bdcXylHNAMJ6EIJr78ZKSzxbZC2NwN6SxxydPb9jwr/OH5+MI8Pjtrp 3PLLEuOM7fKIq8ah84Qdj+wlr0Tn9A3C4MTWVlnDIE0szK3FnMfnQ5kjOLDyF0KtzVWkpRGwfMkAd 8oGE/H72+KFLdCDv+mhljQ==; Original-Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qIq08-0002lm-94; Mon, 10 Jul 2023 08:28:24 -0400 In-Reply-To: <2ed1361e-9cf1-fb25-14bf-ee634aaf9382@cs.ucla.edu> (message from Paul Eggert on Sun, 9 Jul 2023 13:57:25 -0700) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:307716 Archived-At: > Date: Sun, 9 Jul 2023 13:57:25 -0700 > Cc: emacs-devel@gnu.org > From: Paul Eggert > > On 2023-07-09 04:19, Eli Zaretskii wrote: > > This is a Gnulib bug, we've "inherited" it 2 months ago. > > Odd, that could happen if one ran 'configure' with an unusual argument, > e.g., './configure gt_cv_locale_fr=', but I don't see how it could > happen otherwise. > > The configure-time test for French locales is present only to work > around a Solaris 10 bug, and looking into that bug I don't see how it > could affect Emacs. AFAIR, Gnulib-generated configure scripts always check for the French locale, for whatever reasons. > So I installed the attached patches to bring Emacs > up to speed on recent Gnulib (I fixed Gnulib to handle the "unusual > argument" issue), and to remove the unnecessary-for-Emacs French locale > testing so this should work around whatever obscure issue Angelo ran > into. Please give it a try. But shouldn't LOCALE_FR_UTF8 be quoted in the below fragment? if test $LOCALE_FR_UTF8 != none; then if test "$cross_compiling" = yes; then : This is still present in the configure script regenerated after your changes on master. Thanks.