1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-19 10:10:40 +03:00

Mayaqua: use included zlib headers only on Windows

zlib doesn't have a dedicated directory on Unix systems, because it has a single header, meaning that the header from the repository was being used instead.

This commit moves the header to the Windows includes directory, so that we can use the proper include path on all systems.
This commit is contained in:
Davide Beatrici 2018-07-27 08:21:27 +02:00
parent ce5ee2b070
commit 66b2d7234d
3 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@
#include <stdarg.h>
#include <time.h>
#include <errno.h>
#include <zlib/zlib.h>
#include <zlib.h>
#include <Mayaqua/Mayaqua.h>
#define MEMORY_SLEEP_TIME 150