author | Sam Lantinga |
Fri, 08 Apr 2011 13:03:26 -0700 | |
changeset 5535 | 96594ac5fd1a |
parent 5512 | 56ab281d7d3e |
child 6138 | 4c64952a58fb |
permissions | -rw-r--r-- |
slouken@1603 | 1 |
/* |
slouken@5535 | 2 |
Simple DirectMedia Layer |
slouken@5535 | 3 |
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org> |
slouken@1603 | 4 |
|
slouken@5535 | 5 |
This software is provided 'as-is', without any express or implied |
slouken@5535 | 6 |
warranty. In no event will the authors be held liable for any damages |
slouken@5535 | 7 |
arising from the use of this software. |
slouken@1603 | 8 |
|
slouken@5535 | 9 |
Permission is granted to anyone to use this software for any purpose, |
slouken@5535 | 10 |
including commercial applications, and to alter it and redistribute it |
slouken@5535 | 11 |
freely, subject to the following restrictions: |
slouken@1603 | 12 |
|
slouken@5535 | 13 |
1. The origin of this software must not be misrepresented; you must not |
slouken@5535 | 14 |
claim that you wrote the original software. If you use this software |
slouken@5535 | 15 |
in a product, an acknowledgment in the product documentation would be |
slouken@5535 | 16 |
appreciated but is not required. |
slouken@5535 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
slouken@5535 | 18 |
misrepresented as being the original software. |
slouken@5535 | 19 |
3. This notice may not be removed or altered from any source distribution. |
slouken@1603 | 20 |
*/ |
slouken@1603 | 21 |
|
slouken@1603 | 22 |
#ifndef _SDL_config_minimal_h |
slouken@1603 | 23 |
#define _SDL_config_minimal_h |
slouken@1608 | 24 |
|
slouken@1608 | 25 |
#include "SDL_platform.h" |
slouken@1603 | 26 |
|
slouken@3407 | 27 |
/** |
slouken@3407 | 28 |
* \file SDL_config_minimal.h |
slouken@3407 | 29 |
* |
slouken@3407 | 30 |
* This is the minimal configuration that can be used to build SDL. |
slouken@3407 | 31 |
*/ |
slouken@1603 | 32 |
|
slouken@5481 | 33 |
#include <stddef.h> |
slouken@1603 | 34 |
#include <stdarg.h> |
slouken@1603 | 35 |
|
slouken@3220 | 36 |
#if !defined(_STDINT_H_) && (!defined(HAVE_STDINT_H) || !_HAVE_STDINT_H) |
slouken@5481 | 37 |
typedef unsigned int size_t; |
slouken@1603 | 38 |
typedef signed char int8_t; |
slouken@1603 | 39 |
typedef unsigned char uint8_t; |
slouken@1603 | 40 |
typedef signed short int16_t; |
slouken@1603 | 41 |
typedef unsigned short uint16_t; |
slouken@1603 | 42 |
typedef signed int int32_t; |
slouken@1603 | 43 |
typedef unsigned int uint32_t; |
slouken@5481 | 44 |
typedef signed long long int64_t; |
slouken@5481 | 45 |
typedef unsigned long long uint64_t; |
slouken@1603 | 46 |
typedef unsigned long uintptr_t; |
slouken@3220 | 47 |
#endif /* !_STDINT_H_ && !HAVE_STDINT_H */ |
slouken@1603 | 48 |
|
slouken@5481 | 49 |
#ifdef __GNUC__ |
slouken@5481 | 50 |
#define HAVE_GCC_SYNC_LOCK_TEST_AND_SET 1 |
slouken@5481 | 51 |
#endif |
slouken@5481 | 52 |
|
slouken@1603 | 53 |
/* Enable the dummy audio driver (src/audio/dummy/\*.c) */ |
slouken@1603 | 54 |
#define SDL_AUDIO_DRIVER_DUMMY 1 |
slouken@1603 | 55 |
|
slouken@1603 | 56 |
/* Enable the stub joystick driver (src/joystick/dummy/\*.c) */ |
slouken@1603 | 57 |
#define SDL_JOYSTICK_DISABLED 1 |
slouken@1603 | 58 |
|
slouken@2713 | 59 |
/* Enable the stub haptic driver (src/haptic/dummy/\*.c) */ |
slouken@2771 | 60 |
#define SDL_HAPTIC_DISABLED 1 |
slouken@2713 | 61 |
|
slouken@1603 | 62 |
/* Enable the stub shared object loader (src/loadso/dummy/\*.c) */ |
slouken@1603 | 63 |
#define SDL_LOADSO_DISABLED 1 |
slouken@1603 | 64 |
|
slouken@1603 | 65 |
/* Enable the stub thread support (src/thread/generic/\*.c) */ |
slouken@1603 | 66 |
#define SDL_THREADS_DISABLED 1 |
slouken@1603 | 67 |
|
slouken@1603 | 68 |
/* Enable the stub timer support (src/timer/dummy/\*.c) */ |
slouken@1603 | 69 |
#define SDL_TIMERS_DISABLED 1 |
slouken@1603 | 70 |
|
slouken@1603 | 71 |
/* Enable the dummy video driver (src/video/dummy/\*.c) */ |
slouken@1603 | 72 |
#define SDL_VIDEO_DRIVER_DUMMY 1 |
slouken@1603 | 73 |
|
slouken@1603 | 74 |
#endif /* _SDL_config_minimal_h */ |