From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: bad default font on Windows mingw64 Date: Thu, 25 Jul 2019 19:51:47 +0300 Message-ID: <837e86njks.fsf@gnu.org> References: <86y30q57g4.fsf@stephe-leake.org> <8336iyq81l.fsf@gnu.org> <86tvbd6fwo.fsf@stephe-leake.org> <83wog9q2vk.fsf@gnu.org> <86pnm167qq.fsf@stephe-leake.org> <875znt7k2g.fsf@telefonica.net> <86k1c95zq6.fsf@stephe-leake.org> <83sgqxpjc2.fsf@gnu.org> Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="212311"; mail-complaints-to="usenet@blaine.gmane.org" Cc: emacs-devel@gnu.org To: stephen_leake@stephe-leake.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jul 25 18:51:59 2019 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hqgyF-000t72-5Q for ged-emacs-devel@m.gmane.org; Thu, 25 Jul 2019 18:51:59 +0200 Original-Received: from localhost ([::1]:34036 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hqgyE-0001Nl-1l for ged-emacs-devel@m.gmane.org; Thu, 25 Jul 2019 12:51:58 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:37991) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hqgyB-0001Nf-Bu for emacs-devel@gnu.org; Thu, 25 Jul 2019 12:51:56 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:47124) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hqgyA-0004u3-On; Thu, 25 Jul 2019 12:51:54 -0400 Original-Received: from [176.228.60.248] (port=3344 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hqgyA-0003Md-8F; Thu, 25 Jul 2019 12:51:54 -0400 In-reply-to: <83sgqxpjc2.fsf@gnu.org> (message from Eli Zaretskii on Tue, 23 Jul 2019 05:37:17 +0300) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:238891 Archived-At: > Date: Tue, 23 Jul 2019 05:37:17 +0300 > From: Eli Zaretskii > Cc: emacs-devel@gnu.org > > > From: Stephen Leake > > Date: Mon, 22 Jul 2019 18:03:29 -0700 > > > > > pacman -Qi mingw-w64-x86_64-harfbuzz > > > > I had to do 'pacman -S --refresh' first, but now that's updated. > > > > Emacs 'make' did not notice the change, so I had to to 'make clean' first > > > > And now it works properly, so the problem was an old harbuzz library. > > > > Perhaps configure should check for that? > > I wouldn't know what check to insert. hb_font_get_nominal_glyph > appeared in HarfBuzz 1.2.3, and we already check for that. I suspect > your problem was actually with Freetype, which is HarfBuzz's > dependency. I asked on the HarfBuzz mailing list, and it turned out that our code implicitly assumed HarfBuzz 2.0.0 or later, by omitting a function call which was needed before that version. I've now added that call, so we can indeed support old HarfBuzz versions on MS-Windows, per the configure-time tests. Thanks.