diff options
author | Ladislav <zezula@volny.cz> | 2013-07-24 23:30:49 -0700 |
---|---|---|
committer | Ladislav <zezula@volny.cz> | 2013-07-24 23:30:49 -0700 |
commit | d18ad30df72afd78dfa3456e524215bddca7c209 (patch) | |
tree | 7e4f551b0d91331b69f59a4da115ac1112258359 | |
parent | a3fba332ce93a3453441b2b8e6f43c0793602bb5 (diff) | |
parent | 1726aa5e69f2e0c3ade055b97767efa9ac1e9624 (diff) |
Merge pull request #4 from kambala-decapitator/master
fixed compilation for PowerPC architecture on Mac OS X
-rw-r--r-- | src/StormPort.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/StormPort.h b/src/StormPort.h index 069033a..3c7c121 100644 --- a/src/StormPort.h +++ b/src/StormPort.h @@ -72,6 +72,11 @@ #include <fcntl.h> #include <stdlib.h> #include <errno.h> + + #if __ppc__ == 1 || __POWERPC__ == 1 || _ARCH_PPC == 1 + #include <stdint.h> + #include <CoreFoundation/CFByteOrder.h> + #endif #define PKEXPORT #define __SYS_ZLIB |