Merge pull request #13 from jpcy/fix-windows-zlib-path

Fix zlib header path on windows.
This commit is contained in:
Zachary J. Slater 2015-11-19 11:01:59 -08:00
commit ef78a8b2b8
3 changed files with 14 additions and 0 deletions

View File

@ -42,7 +42,12 @@
#include <stdio.h>
#include <stdlib.h>
#ifdef WIN32
#include <QtZlib/zlib.h>
#else
#include <zlib.h>
#endif
#if defined(USE_FILE32API)
#define fopen64 fopen

View File

@ -72,7 +72,12 @@
#define NOUNCRYPT
#endif
#ifdef WIN32
#include <QtZlib/zlib.h>
#else
#include <zlib.h>
#endif
#include "unzip.h"
#ifdef STDC

View File

@ -48,8 +48,12 @@ extern "C" {
#endif
#ifndef _ZLIB_H
#ifdef WIN32
#include <QtZlib/zlib.h>
#else
#include <zlib.h>
#endif
#endif
#ifndef _ZLIBIOAPI_H
#include "ioapi.h"