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: Bootstrap failure on master with native compilation for Windows Date: Sat, 26 Oct 2024 22:20:13 +0300 Message-ID: <86bjz6briq.fsf@gnu.org> References: <8634kiit9e.fsf@gmail.com> <86cyjmbrnv.fsf@gnu.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="6225"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: andrewjmoreton@gmail.com Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Oct 26 21:20:46 2024 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 1t4mL7-0001Sj-O4 for ged-emacs-devel@m.gmane-mx.org; Sat, 26 Oct 2024 21:20:45 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1t4mKg-0008KJ-GJ; Sat, 26 Oct 2024 15:20:18 -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 1t4mKd-0008Jy-Mu for emacs-devel@gnu.org; Sat, 26 Oct 2024 15:20:15 -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 1t4mKd-0005rG-Ew; Sat, 26 Oct 2024 15:20:15 -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=ACcK0Xx6BddwKoJeT3anOK7lmZtkqeku2Jwh1/hlyn8=; b=W07yGwflm1oc QAZSQOr5STGFqprVWf+Eqsi3G2JxMoh1kJHCA0anV7jD2JiQqgLVElcbYYb8YGzbdnuG8r2NcKVSG 8FwlWPD6wEKJy4k9y72+ZtuhhgczfFGAM/Vg1MuHRx44QZg3JI/BfkkhY9g+znBXETZ9FQcsp5LDG Jo82D9kjt1YaIVmiZK1R4u1teIVTlLB81vXHFhscwVPMYaRDu1MgDsJ9nOcqczNDosH1WSje089JU LR4wbOquBe3WPpaPWwPm8T/ZiuuHX3P5c4FVlFY24tAgxDWCIa4iKtwLaZAUQqj1gB9oO1XePzULP s04CdwlUioF8lQYSOzHw2Q==; In-Reply-To: <86cyjmbrnv.fsf@gnu.org> (message from Eli Zaretskii on Sat, 26 Oct 2024 22:17:08 +0300) 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:324858 Archived-At: > Date: Sat, 26 Oct 2024 22:17:08 +0300 > From: Eli Zaretskii > Cc: emacs-devel@gnu.org > > Does it help to move the following part out of syms_of_w32dwrite to > the top level of that file? > > DEFVAR_BOOL ("w32-inhibit-dwrite", w32_inhibit_dwrite, > doc: /* If t, don't use DirectWrite. */); Actually, I think the problem is that it is not initialized, so try this: void syms_of_w32dwrite (void) { DEFVAR_BOOL ("w32-inhibit-dwrite", w32_inhibit_dwrite, doc: /* If t, don't use DirectWrite. */); w32_inhibit_dwrite = false; <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< defsubr (&Sw32_dwrite_reinit); defsubr (&Sw32_dwrite_available); }