Try to build Golded+ in MacOSX
This commit is contained in:
parent
66831e6a38
commit
ae3736fc28
@ -138,10 +138,12 @@ typedef unsigned char uint8_t;
|
|||||||
typedef unsigned short uint16_t;
|
typedef unsigned short uint16_t;
|
||||||
typedef unsigned int uint32_t;
|
typedef unsigned int uint32_t;
|
||||||
|
|
||||||
|
#if !defined(__APPLE__)
|
||||||
typedef signed char int8_t;
|
typedef signed char int8_t;
|
||||||
typedef signed short int16_t;
|
typedef signed short int16_t;
|
||||||
typedef signed int int32_t;
|
typedef signed int int32_t;
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef uint8_t byte;
|
typedef uint8_t byte;
|
||||||
typedef uint16_t word;
|
typedef uint16_t word;
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
|
|
||||||
/* FreeBSD's malloc.h is deprecated, it drops a warning and */
|
/* FreeBSD's malloc.h is deprecated, it drops a warning and */
|
||||||
/* #includes <stdlib.h>, which is already here. */
|
/* #includes <stdlib.h>, which is already here. */
|
||||||
#ifndef __FreeBSD__
|
#if !defined(__FreeBSD__) && !defined(__APPLE__)
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user