mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
tests: attempt to get disabled streamheader test to compile on win32
Though it probably won't work, but then it's disabled.
This commit is contained in:
parent
b04e61d8a4
commit
585bd3ee21
1 changed files with 7 additions and 0 deletions
|
@ -24,7 +24,14 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#include <io.h>
|
||||
#define pipe(fds) _pipe(fds)
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include <gio/gio.h>
|
||||
#include <gst/check/gstcheck.h>
|
||||
|
|
Loading…
Reference in a new issue