From: Paul Eggert <eggert@cs.ucla.edu>
To: Eli Zaretskii <eliz@gnu.org>
Cc: Bruno Haible <bruno@clisp.org>, Gnulib bugs <bug-gnulib@gnu.org>,
emacs-devel@gnu.org
Subject: Re: [master b3cf281] Unbreak the MinGW build
Date: Fri, 16 Dec 2016 07:43:59 -0800 [thread overview]
Message-ID: <6f53d9d5-c352-2bb7-1312-d7e465b63c61@cs.ucla.edu> (raw)
In-Reply-To: <83eg1887q4.fsf@gnu.org>
[-- Attachment #1: Type: text/plain, Size: 631 bytes --]
Eli Zaretskii wrote:
> I needed this commit to prevent temacs from crashing during dumping.
> Don't ask me how including errno.h (both the one from Gnulib and the
> MinGW one) could cause this, especially as the preprocessed __fpending
> doesn't seem to change a bit as result of that, and it doesn't seem to
> even be called during dumping. The facts are stubborn: if I leave
> that inclusion in place, I get a crash, removing it fixes the crash.
I propagated this fix back to gnulib by installing the attached patch to Gnulib.
I'll CC: this to Bruno Haible, who made the recent change to fpending. I don't
use MinGW myself.
[-- Attachment #2: 0001-fpending-fix-port-to-MinGW-on-Emacs.patch --]
[-- Type: text/x-diff, Size: 1458 bytes --]
From 60635cc80e74f7f48cf5f794cc1d3d43d4c4f1e9 Mon Sep 17 00:00:00 2001
From: Paul Eggert <eggert@cs.ucla.edu>
Date: Fri, 16 Dec 2016 07:38:58 -0800
Subject: [PATCH] fpending: fix port to MinGW on Emacs
* lib/stdio-impl.h [__MINGW32__]: Do not include errno.h.
Problem reported by Eli Zaretskii in:
http://lists.gnu.org/archive/html/emacs-devel/2016-12/msg00642.html
Is Plan 9 still a valid porting target, anyway?
---
ChangeLog | 8 ++++++++
lib/stdio-impl.h | 2 ++
2 files changed, 10 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 5e9e801..dd67dba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2016-12-16 Paul Eggert <eggert@cs.ucla.edu>
+
+ fpending: fix port to MinGW on Emacs
+ * lib/stdio-impl.h [__MINGW32__]: Do not include errno.h.
+ Problem reported by Eli Zaretskii in:
+ http://lists.gnu.org/archive/html/emacs-devel/2016-12/msg00642.html
+ Is Plan 9 still a valid porting target, anyway?
+
2016-12-15 Paul Eggert <eggert@cs.ucla.edu>
safe-alloc: use xalloc-oversized
diff --git a/lib/stdio-impl.h b/lib/stdio-impl.h
index 766d693..1972a33 100644
--- a/lib/stdio-impl.h
+++ b/lib/stdio-impl.h
@@ -26,7 +26,9 @@
# include <sys/param.h>
#endif
+#ifndef __MINGW32__
#include <errno.h> /* For detecting Plan9. */
+#endif
#if defined __sferror || defined __DragonFly__ || defined __ANDROID__
/* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin, Android */
--
2.7.4
next prev parent reply other threads:[~2016-12-16 15:43 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-16 10:54 [master b3cf281] Unbreak the MinGW build Eli Zaretskii
2016-12-16 15:43 ` Paul Eggert [this message]
2016-12-16 18:11 ` Bruno Haible
2016-12-16 21:10 ` Eli Zaretskii
2016-12-16 23:17 ` Bruno Haible
2016-12-17 0:30 ` Paul Eggert
2016-12-17 7:51 ` Eli Zaretskii
2016-12-17 11:17 ` Eli Zaretskii
2016-12-16 22:16 ` Stephen Leake
2016-12-16 22:38 ` Stephen Leake
2016-12-17 7:40 ` Eli Zaretskii
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=6f53d9d5-c352-2bb7-1312-d7e465b63c61@cs.ucla.edu \
--to=eggert@cs.ucla.edu \
--cc=bruno@clisp.org \
--cc=bug-gnulib@gnu.org \
--cc=eliz@gnu.org \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.