1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-11 05:51:21 -08:00

Fix bug #12805 with compilation error in the cygw32 build.

src/makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
 src/w32fns.c Include unistd.h, to avoid compiler warnings on Cygwin.
 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
 file descriptor 2 for standard error.
This commit is contained in:
Eli Zaretskii 2012-11-05 18:30:45 +02:00
parent 4f3f021d65
commit c8e3a9c3db
3 changed files with 18 additions and 1 deletions

View file

@ -1,3 +1,11 @@
2012-11-05 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
* w32fns.c Include unistd.h, to avoid compiler warnings on Cygwin.
(emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
file descriptor 2 for standard error.
2012-11-05 Chong Yidong <cyd@gnu.org>
* process.c (wait_reading_process_output): Revert previous change.