mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
tests: fix win32 build even more
This commit is contained in:
parent
84cea735e9
commit
63eeb11bfb
1 changed files with 4 additions and 1 deletions
|
@ -27,8 +27,11 @@
|
|||
#include <glib.h>
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <io.h>
|
||||
#define pipe(fds) _pipe(fds)
|
||||
#include <fcntl.h>
|
||||
#define pipe(fds) _pipe(fds,4096,O_BINARY)
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue