mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
synaesthesia: fix compilation on windows
Fix compilation under MSVC due to references to headers that are not available with the MS SDKs. Fixes #578524
This commit is contained in:
parent
ef31993f34
commit
3743c83ace
1 changed files with 4 additions and 0 deletions
|
@ -28,12 +28,16 @@
|
|||
#include <pthread.h>
|
||||
#include <dirent.h>
|
||||
#include <sys/stat.h>
|
||||
#ifndef _MSC_VER
|
||||
#include <sys/time.h>
|
||||
#include <time.h>
|
||||
#endif
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#ifndef _MSC_VER
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue