mirror of https://git.ffmpeg.org/ffmpeg.git
hwcontext_vulkan: guard unistd.h include
win32 typically doesn't have unistd.h, so always including it will break MSVC builds. The usage of those POSIX functions are already guarded by _WIN32, so use that to guard unistd.h include as well.
This commit is contained in:
parent
e37b15e26f
commit
185871fdd3
|
@ -27,10 +27,10 @@
|
||||||
#include "compat/w32dlfcn.h"
|
#include "compat/w32dlfcn.h"
|
||||||
#else
|
#else
|
||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
|
#include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "pixdesc.h"
|
#include "pixdesc.h"
|
||||||
|
|
Loading…
Reference in New Issue