Mercurial > sdl-ios-xcode
comparison include/SDL_config_macosx.h @ 1749:18e44c267283
We want to wrap HAVE_ALLOCA_H, not HAVE_ALLOCA. :)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 30 Apr 2006 08:57:02 +0000 |
parents | d67622addf51 |
children | 2bf1b143745b |
comparison
equal
deleted
inserted
replaced
1748:5e86e34453d4 | 1749:18e44c267283 |
---|---|
28 /* This is a set of defines to configure the SDL features */ | 28 /* This is a set of defines to configure the SDL features */ |
29 | 29 |
30 #define SDL_HAS_64BIT_TYPE 1 | 30 #define SDL_HAS_64BIT_TYPE 1 |
31 | 31 |
32 /* Useful headers */ | 32 /* Useful headers */ |
33 /* If we specified an SDK or have a post-PowerPC chip, then alloca.h exists. */ | |
34 #if ( (MAC_OS_X_VERSION_MIN_REQUIRED >= 1030) || (!defined(__POWERPC__)) ) | |
33 #define HAVE_ALLOCA_H 1 | 35 #define HAVE_ALLOCA_H 1 |
36 #endif | |
34 #define HAVE_SYS_TYPES_H 1 | 37 #define HAVE_SYS_TYPES_H 1 |
35 #define HAVE_STDIO_H 1 | 38 #define HAVE_STDIO_H 1 |
36 #define STDC_HEADERS 1 | 39 #define STDC_HEADERS 1 |
37 #define HAVE_STRING_H 1 | 40 #define HAVE_STRING_H 1 |
38 #define HAVE_INTTYPES_H 1 | 41 #define HAVE_INTTYPES_H 1 |
44 /* C library functions */ | 47 /* C library functions */ |
45 #define HAVE_MALLOC 1 | 48 #define HAVE_MALLOC 1 |
46 #define HAVE_CALLOC 1 | 49 #define HAVE_CALLOC 1 |
47 #define HAVE_REALLOC 1 | 50 #define HAVE_REALLOC 1 |
48 #define HAVE_FREE 1 | 51 #define HAVE_FREE 1 |
49 | |
50 /* If we specified an SDK or have a post-PowerPC chip, then alloca.h exists. */ | |
51 #if ( (MAC_OS_X_VERSION_MIN_REQUIRED >= 1030) || (!defined(__POWERPC__)) ) | |
52 #define HAVE_ALLOCA 1 | 52 #define HAVE_ALLOCA 1 |
53 #endif | |
54 | |
55 #define HAVE_GETENV 1 | 53 #define HAVE_GETENV 1 |
56 #define HAVE_PUTENV 1 | 54 #define HAVE_PUTENV 1 |
57 #define HAVE_UNSETENV 1 | 55 #define HAVE_UNSETENV 1 |
58 #define HAVE_QSORT 1 | 56 #define HAVE_QSORT 1 |
59 #define HAVE_ABS 1 | 57 #define HAVE_ABS 1 |