diff options
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 |