mirror of
https://github.com/dhewm/dhewm3.git
synced 2024-11-26 14:21:18 +00:00
Merge pull request #88 from waldheinz/drop-minizip-of-usage
Fix building on Gentoo by providing OF() macro if necessary .. I hope this time it works for everyone.
This commit is contained in:
commit
6d8108c508
1 changed files with 4 additions and 4 deletions
|
@ -24,10 +24,10 @@
|
|||
#ifndef _ZLIBIOAPI64_H
|
||||
#define _ZLIBIOAPI64_H
|
||||
|
||||
// DG: Gentoo renamed zlibs OF to _Z_OF for some reason..
|
||||
// as we use OF, just define it as _Z_OF in that case
|
||||
#ifdef _Z_OF
|
||||
#define OF _Z_OF
|
||||
// fixes Gentoo zlib problems, see
|
||||
// https://bugs.gentoo.org/show_bug.cgi?id=383179
|
||||
#ifndef OF
|
||||
#define OF(x) x
|
||||
#endif
|
||||
|
||||
#if (!defined(_WIN32)) && (!defined(WIN32)) && (!defined(__APPLE__))
|
||||
|
|
Loading…
Reference in a new issue