win: fix build on case-sensitive file systems

Cross-compiling with mingw64 was broken because the header files are
called `accctrl.h` and `aclapi.h` whereas libuv was trying to include
`AccCtrl.h` and `AclAPI.h`.

PR-URL: https://github.com/libuv/libuv/pull/1629
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
Ben Noordhuis 2017-11-15 16:20:45 +01:00
parent 1c4de1916e
commit facac20348

View File

@ -31,8 +31,8 @@
#include "stream-inl.h"
#include "req-inl.h"
#include <AclAPI.h>
#include <AccCtrl.h>
#include <aclapi.h>
#include <accctrl.h>
typedef struct uv__ipc_queue_item_s uv__ipc_queue_item_t;