diff options
author | Ladislav Zezula <ladislav.zezula@avg.com> | 2013-07-25 08:31:51 +0200 |
---|---|---|
committer | Ladislav Zezula <ladislav.zezula@avg.com> | 2013-07-25 08:38:00 +0200 |
commit | 0945e6f82076db048010ffaf37c2162dc6b6c224 (patch) | |
tree | ac8718a9e2b90740dd33db0e431f5908774affcc /src | |
parent | 443c92349a38c8ba3b6ac798eb52ce82e5a068bb (diff) |
+ Fixed output directory for Stormlib_test (Windows, x64, Release)
Diffstat (limited to 'src')
-rw-r--r-- | src/StormPort.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/StormPort.h b/src/StormPort.h index 3c7c121..65fbb21 100644 --- a/src/StormPort.h +++ b/src/StormPort.h @@ -73,11 +73,12 @@ #include <stdlib.h> #include <errno.h> - #if __ppc__ == 1 || __POWERPC__ == 1 || _ARCH_PPC == 1 + // Support for PowerPC on Max OS X + #if (__ppc__ == 1) || (__POWERPC__ == 1) || (_ARCH_PPC == 1) #include <stdint.h> #include <CoreFoundation/CFByteOrder.h> - #endif - + #endif + #define PKEXPORT #define __SYS_ZLIB #define __SYS_BZLIB |