comparison include/SDL_config.h @ 1331:1cbaeee565b1

A few fixes to get this building on Linux again
author Sam Lantinga <slouken@libsdl.org>
date Mon, 06 Feb 2006 08:46:14 +0000
parents 450721ad5436
children 3692456e7b0f
comparison
equal deleted inserted replaced
1330:450721ad5436 1331:1cbaeee565b1
30 /* Comment this if you want to build without any libc requirements */ 30 /* Comment this if you want to build without any libc requirements */
31 #define HAVE_LIBC 31 #define HAVE_LIBC
32 #ifdef HAVE_LIBC 32 #ifdef HAVE_LIBC
33 33
34 /* Various C library headers */ 34 /* Various C library headers */
35 #ifndef HAVE_CTYPE_H
35 #define HAVE_CTYPE_H 36 #define HAVE_CTYPE_H
37 #endif
38 #ifndef HAVE_STDIO_H
36 #define HAVE_STDIO_H 39 #define HAVE_STDIO_H
40 #endif
41 #ifndef HAVE_STDLIB_H
37 #define HAVE_STDLIB_H 42 #define HAVE_STDLIB_H
43 #endif
44 #ifndef HAVE_MALLOC_H
38 #define HAVE_MALLOC_H 45 #define HAVE_MALLOC_H
46 #endif
47 #ifndef HAVE_STRING_H
39 #define HAVE_STRING_H 48 #define HAVE_STRING_H
49 #endif
40 #if !defined(_WIN32_WCE) 50 #if !defined(_WIN32_WCE)
51 #ifndef HAVE_SIGNAL_H
41 #define HAVE_SIGNAL_H 52 #define HAVE_SIGNAL_H
42 #endif 53 #endif
54 #endif /* !_WIN32_WCE */
43 55
44 /* Features provided by SDL_stdlib.h */ 56 /* Features provided by SDL_stdlib.h */
45 #if !defined(_WIN32) /* Don't use C runtime versions of these on Windows */ 57 #if !defined(_WIN32) /* Don't use C runtime versions of these on Windows */
46 #define HAVE_GETENV 58 #define HAVE_GETENV
47 #define HAVE_PUTENV 59 #define HAVE_PUTENV
48 #endif 60 #endif
49 #define HAVE_MALLOC 61 #define HAVE_MALLOC
50 #define HAVE_REALLOC 62 #define HAVE_REALLOC
51 #define HAVE_FREE 63 #define HAVE_FREE
64 #ifndef HAVE_ALLOCA
52 #define HAVE_ALLOCA 65 #define HAVE_ALLOCA
66 #endif
53 /*#define HAVE_QSORT*/ 67 /*#define HAVE_QSORT*/
54 68
55 /* Features provided by SDL_string.h */ 69 /* Features provided by SDL_string.h */
56 #define HAVE_MEMSET 70 #define HAVE_MEMSET
57 #define HAVE_MEMCPY 71 #define HAVE_MEMCPY