mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-11 22:31:12 +02:00
Conditionalize process.h, add io.h believe needed for _pipe on mingw.
This commit is contained in:
parent
0403bb28f4
commit
12fa431a82
1 changed files with 8 additions and 1 deletions
|
@ -23,7 +23,6 @@
|
|||
#endif
|
||||
|
||||
#include <fcntl.h> /* for mingw */
|
||||
#include <process.h> /* for mingw */
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
|
@ -38,6 +37,14 @@
|
|||
#include "libguile/validate.h"
|
||||
#include "libguile/scmsigs.h"
|
||||
|
||||
#ifdef HAVE_IO_H
|
||||
#include <io.h> /* for mingw _pipe() */
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_PROCESS_H
|
||||
#include <process.h> /* for mingw */
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue