2006-02-07 12:11:33 +00:00
|
|
|
/*
|
2011-04-08 13:03:26 -07:00
|
|
|
Simple DirectMedia Layer
|
2020-01-16 20:49:25 -08:00
|
|
|
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
|
2011-04-08 13:03:26 -07:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
2006-02-07 12:11:33 +00:00
|
|
|
*/
|
|
|
|
|
2016-11-20 21:34:54 -08:00
|
|
|
#ifndef SDL_config_minimal_h_
|
|
|
|
#define SDL_config_minimal_h_
|
2017-02-20 10:55:33 -08:00
|
|
|
#define SDL_config_h_
|
2006-03-23 21:55:13 +00:00
|
|
|
|
|
|
|
#include "SDL_platform.h"
|
2006-03-23 21:28:33 +00:00
|
|
|
|
2009-10-19 13:31:58 +00:00
|
|
|
/**
|
|
|
|
* \file SDL_config_minimal.h
|
2013-05-18 14:17:52 -07:00
|
|
|
*
|
2009-10-19 13:31:58 +00:00
|
|
|
* This is the minimal configuration that can be used to build SDL.
|
|
|
|
*/
|
2006-02-24 07:26:31 +00:00
|
|
|
|
2013-06-13 22:10:10 -07:00
|
|
|
#define HAVE_STDARG_H 1
|
|
|
|
#define HAVE_STDDEF_H 1
|
2006-02-09 09:07:13 +00:00
|
|
|
|
2013-06-13 22:10:10 -07:00
|
|
|
/* Most everything except Visual Studio 2008 and earlier has stdint.h now */
|
|
|
|
#if defined(_MSC_VER) && (_MSC_VER < 1600)
|
|
|
|
/* Here are some reasonable defaults */
|
2011-03-12 13:21:57 -08:00
|
|
|
typedef unsigned int size_t;
|
2006-02-09 09:07:13 +00:00
|
|
|
typedef signed char int8_t;
|
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
typedef signed short int16_t;
|
|
|
|
typedef unsigned short uint16_t;
|
|
|
|
typedef signed int int32_t;
|
|
|
|
typedef unsigned int uint32_t;
|
2011-03-12 13:21:57 -08:00
|
|
|
typedef signed long long int64_t;
|
|
|
|
typedef unsigned long long uint64_t;
|
2006-02-09 09:07:13 +00:00
|
|
|
typedef unsigned long uintptr_t;
|
2013-06-13 22:10:10 -07:00
|
|
|
#else
|
|
|
|
#define HAVE_STDINT_H 1
|
|
|
|
#endif /* Visual Studio 2008 */
|
2006-03-08 08:30:17 +00:00
|
|
|
|
2011-03-12 13:21:57 -08:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#define HAVE_GCC_SYNC_LOCK_TEST_AND_SET 1
|
|
|
|
#endif
|
|
|
|
|
2006-03-14 08:53:33 +00:00
|
|
|
/* Enable the dummy audio driver (src/audio/dummy/\*.c) */
|
2013-05-18 14:17:52 -07:00
|
|
|
#define SDL_AUDIO_DRIVER_DUMMY 1
|
2006-03-08 08:30:17 +00:00
|
|
|
|
|
|
|
/* Enable the stub joystick driver (src/joystick/dummy/\*.c) */
|
2013-05-18 14:17:52 -07:00
|
|
|
#define SDL_JOYSTICK_DISABLED 1
|
2006-03-08 08:30:17 +00:00
|
|
|
|
2008-08-25 09:55:03 +00:00
|
|
|
/* Enable the stub haptic driver (src/haptic/dummy/\*.c) */
|
2013-05-18 14:17:52 -07:00
|
|
|
#define SDL_HAPTIC_DISABLED 1
|
2008-08-25 09:55:03 +00:00
|
|
|
|
2018-08-21 13:29:21 -07:00
|
|
|
/* Enable the stub sensor driver (src/sensor/dummy/\*.c) */
|
|
|
|
#define SDL_SENSOR_DISABLED 1
|
|
|
|
|
2006-03-08 08:30:17 +00:00
|
|
|
/* Enable the stub shared object loader (src/loadso/dummy/\*.c) */
|
2013-05-18 14:17:52 -07:00
|
|
|
#define SDL_LOADSO_DISABLED 1
|
2006-03-08 08:30:17 +00:00
|
|
|
|
|
|
|
/* Enable the stub thread support (src/thread/generic/\*.c) */
|
2013-05-18 14:17:52 -07:00
|
|
|
#define SDL_THREADS_DISABLED 1
|
2006-03-08 08:30:17 +00:00
|
|
|
|
|
|
|
/* Enable the stub timer support (src/timer/dummy/\*.c) */
|
2013-05-18 14:17:52 -07:00
|
|
|
#define SDL_TIMERS_DISABLED 1
|
2006-03-08 08:30:17 +00:00
|
|
|
|
|
|
|
/* Enable the dummy video driver (src/video/dummy/\*.c) */
|
2013-05-18 14:17:52 -07:00
|
|
|
#define SDL_VIDEO_DRIVER_DUMMY 1
|
2006-03-08 08:30:17 +00:00
|
|
|
|
2013-08-20 19:57:11 -04:00
|
|
|
/* Enable the dummy filesystem driver (src/filesystem/dummy/\*.c) */
|
|
|
|
#define SDL_FILESYSTEM_DUMMY 1
|
|
|
|
|
2016-11-20 21:34:54 -08:00
|
|
|
#endif /* SDL_config_minimal_h_ */
|