SDL_config_premake.h (8238B)
1/* include/SDL_config.h. Generated from SDL_config.h.in by configure. */ 2/* 3 Simple DirectMedia Layer 4 Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org> 5 6 This software is provided 'as-is', without any express or implied 7 warranty. In no event will the authors be held liable for any damages 8 arising from the use of this software. 9 10 Permission is granted to anyone to use this software for any purpose, 11 including commercial applications, and to alter it and redistribute it 12 freely, subject to the following restrictions: 13 14 1. The origin of this software must not be misrepresented; you must not 15 claim that you wrote the original software. If you use this software 16 in a product, an acknowledgment in the product documentation would be 17 appreciated but is not required. 18 2. Altered source versions must be plainly marked as such, and must not be 19 misrepresented as being the original software. 20 3. This notice may not be removed or altered from any source distribution. 21*/ 22 23#ifndef _SDL_config_linux_h 24#define _SDL_config_linux_h 25 26/** 27 * \file SDL_config.h.in 28 * 29 * This is a set of defines to configure the SDL features 30 */ 31 32/* General platform specific identifiers */ 33#include "SDL_platform.h" 34 35/* Make sure that this isn't included by Visual C++ */ 36#ifdef _MSC_VER 37#error You should run hg revert SDL_config.h 38#endif 39 40/* C language features */ 41/* #undef const */ 42/* #undef inline */ 43/* #undef volatile */ 44 45/* C datatypes */ 46#ifdef __LP64__ 47#define SIZEOF_VOIDP 8 48#else 49#define SIZEOF_VOIDP 4 50#endif 51#define HAVE_GCC_ATOMICS 1 52/* #undef HAVE_GCC_SYNC_LOCK_TEST_AND_SET */ 53 54/* Comment this if you want to build without any C library requirements */ 55#define HAVE_LIBC 1 56#if HAVE_LIBC 57 58/* Useful headers */ 59#define HAVE_ALLOCA_H 1 60#define HAVE_SYS_TYPES_H 1 61#define HAVE_STDIO_H 1 62#define STDC_HEADERS 1 63#define HAVE_STDLIB_H 1 64#define HAVE_STDARG_H 1 65#define HAVE_MALLOC_H 1 66#define HAVE_MEMORY_H 1 67#define HAVE_STRING_H 1 68#define HAVE_STRINGS_H 1 69#define HAVE_INTTYPES_H 1 70#define HAVE_STDINT_H 1 71#define HAVE_CTYPE_H 1 72#define HAVE_MATH_H 1 73#define HAVE_ICONV_H 1 74#define HAVE_SIGNAL_H 1 75/* #undef HAVE_ALTIVEC_H */ 76/* #undef HAVE_PTHREAD_NP_H */ 77/* #undef HAVE_LIBUDEV_H */ 78#define HAVE_DBUS_DBUS_H 1 79 80/* C library functions */ 81#define HAVE_MALLOC 1 82#define HAVE_CALLOC 1 83#define HAVE_REALLOC 1 84#define HAVE_FREE 1 85#define HAVE_ALLOCA 1 86#ifndef __WIN32__ /* Don't use C runtime versions of these on Windows */ 87#define HAVE_GETENV 1 88#define HAVE_SETENV 1 89#define HAVE_PUTENV 1 90#define HAVE_UNSETENV 1 91#endif 92#define HAVE_QSORT 1 93#define HAVE_ABS 1 94#define HAVE_BCOPY 1 95#define HAVE_MEMSET 1 96#define HAVE_MEMCPY 1 97#define HAVE_MEMMOVE 1 98#define HAVE_MEMCMP 1 99#define HAVE_STRLEN 1 100/* #undef HAVE_STRLCPY */ 101/* #undef HAVE_STRLCAT */ 102#define HAVE_STRDUP 1 103/* #undef HAVE__STRREV */ 104/* #undef HAVE__STRUPR */ 105/* #undef HAVE__STRLWR */ 106/* #undef HAVE_INDEX */ 107/* #undef HAVE_RINDEX */ 108#define HAVE_STRCHR 1 109#define HAVE_STRRCHR 1 110#define HAVE_STRSTR 1 111/* #undef HAVE_ITOA */ 112/* #undef HAVE__LTOA */ 113/* #undef HAVE__UITOA */ 114/* #undef HAVE__ULTOA */ 115#define HAVE_STRTOL 1 116#define HAVE_STRTOUL 1 117/* #undef HAVE__I64TOA */ 118/* #undef HAVE__UI64TOA */ 119#define HAVE_STRTOLL 1 120#define HAVE_STRTOULL 1 121#define HAVE_STRTOD 1 122#define HAVE_ATOI 1 123#define HAVE_ATOF 1 124#define HAVE_STRCMP 1 125#define HAVE_STRNCMP 1 126/* #undef HAVE__STRICMP */ 127#define HAVE_STRCASECMP 1 128/* #undef HAVE__STRNICMP */ 129#define HAVE_STRNCASECMP 1 130#define HAVE_VSSCANF 1 131#define HAVE_VSNPRINTF 1 132#define HAVE_M_PI /**/ 133#define HAVE_ATAN 1 134#define HAVE_ATAN2 1 135#define HAVE_CEIL 1 136#define HAVE_COPYSIGN 1 137#define HAVE_COS 1 138#define HAVE_COSF 1 139#define HAVE_FABS 1 140#define HAVE_FLOOR 1 141#define HAVE_LOG 1 142#define HAVE_POW 1 143#define HAVE_SCALBN 1 144#define HAVE_SIN 1 145#define HAVE_SINF 1 146#define HAVE_SQRT 1 147#define HAVE_FSEEKO 1 148#define HAVE_FSEEKO64 1 149#define HAVE_SIGACTION 1 150#define HAVE_SA_SIGACTION 1 151#define HAVE_SETJMP 1 152#define HAVE_NANOSLEEP 1 153#define HAVE_SYSCONF 1 154/* #undef HAVE_SYSCTLBYNAME */ 155#define HAVE_CLOCK_GETTIME 1 156/* #undef HAVE_GETPAGESIZE */ 157#define HAVE_MPROTECT 1 158#define HAVE_ICONV 1 159#define HAVE_PTHREAD_SETNAME_NP 1 160/* #undef HAVE_PTHREAD_SET_NAME_NP */ 161#define HAVE_SEM_TIMEDWAIT 1 162 163#else 164#define HAVE_STDARG_H 1 165#define HAVE_STDDEF_H 1 166#define HAVE_STDINT_H 1 167#endif /* HAVE_LIBC */ 168 169/* SDL internal assertion support */ 170/* #undef SDL_DEFAULT_ASSERT_LEVEL */ 171 172#ifndef SDL_AUDIO_DRIVER_DUMMY 173#define SDL_AUDIO_DRIVER_DUMMY 1 174#endif 175#ifndef SDL_AUDIO_DRIVER_DISK 176#define SDL_AUDIO_DRIVER_DISK 1 177#endif 178#ifndef SDL_VIDEO_DRIVER_DUMMY 179#define SDL_VIDEO_DRIVER_DUMMY 1 180#endif 181#ifndef SDL_VIDEO_RENDER_OGL 182#define SDL_VIDEO_RENDER_OGL 1 183#endif 184#ifndef SDL_VIDEO_OPENGL 185#define SDL_VIDEO_OPENGL 1 186#endif 187#ifndef SDL_VIDEO_OPENGL_GLX 188#define SDL_VIDEO_OPENGL_GLX 1 189#endif 190#ifndef SDL_LOADSO_DLOPEN 191#define SDL_LOADSO_DLOPEN 1 192#endif 193#ifndef SDL_AUDIO_DRIVER_ALSA 194#define SDL_AUDIO_DRIVER_ALSA 1 195#endif 196#ifndef SDL_AUDIO_DRIVER_ALSA_DYNAMIC 197#define SDL_AUDIO_DRIVER_ALSA_DYNAMIC "libasound.so" 198#endif 199#ifndef SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC 200#define SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC "libpulse-simple.so" 201#endif 202#ifndef SDL_AUDIO_DRIVER_PULSEAUDIO 203#define SDL_AUDIO_DRIVER_PULSEAUDIO 1 204#endif 205#ifndef SDL_AUDIO_DRIVER_ESD 206#define SDL_AUDIO_DRIVER_ESD 1 207#endif 208#ifndef SDL_AUDIO_DRIVER_ESD_DYNAMIC 209#define SDL_AUDIO_DRIVER_ESD_DYNAMIC "libesd.so" 210#endif 211#ifndef SDL_AUDIO_DRIVER_NAS 212#define SDL_AUDIO_DRIVER_NAS 1 213#endif 214#ifndef SDL_AUDIO_DRIVER_NAS_DYNAMIC 215#define SDL_AUDIO_DRIVER_NAS_DYNAMIC "libaudio.so" 216#endif 217#ifndef SDL_AUDIO_DRIVER_OSS 218#define SDL_AUDIO_DRIVER_OSS 1 219#endif 220#ifndef SDL_VIDEO_DRIVER_X11_XINERAMA 221#define SDL_VIDEO_DRIVER_X11_XINERAMA 1 222#endif 223#ifndef SDL_VIDEO_DRIVER_X11 224#define SDL_VIDEO_DRIVER_X11 1 225#endif 226#ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT 227#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT "libXext.so" 228#endif 229#ifndef SDL_VIDEO_DRIVER_X11_XCURSOR 230#define SDL_VIDEO_DRIVER_X11_XCURSOR 1 231#endif 232#ifndef SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM 233#define SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM 1 234#endif 235#ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2 236#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2 "libXi.so" 237#endif 238#ifndef SDL_VIDEO_DRIVER_X11_XVIDMODE 239#define SDL_VIDEO_DRIVER_X11_XVIDMODE 1 240#endif 241#ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA 242#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA "libXinerama.so" 243#endif 244#ifndef SDL_VIDEO_DRIVER_X11_CONST_PARAM_XEXTADDDISPLAY 245#define SDL_VIDEO_DRIVER_X11_CONST_PARAM_XEXTADDDISPLAY 1 246#endif 247#ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC 248#define SDL_VIDEO_DRIVER_X11_DYNAMIC "libX11.so" 249#endif 250#ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS 251#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS "libXss.so" 252#endif 253#ifndef SDL_VIDEO_DRIVER_X11_XINPUT2 254#define SDL_VIDEO_DRIVER_X11_XINPUT2 1 255#endif 256#ifndef SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS 257#define SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS 1 258#endif 259#ifndef SDL_VIDEO_DRIVER_X11_XSCRNSAVER 260#define SDL_VIDEO_DRIVER_X11_XSCRNSAVER 1 261#endif 262#ifndef SDL_VIDEO_DRIVER_X11_XSHAPE 263#define SDL_VIDEO_DRIVER_X11_XSHAPE 1 264#endif 265#ifndef SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH 266#define SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH 1 267#endif 268#ifndef SDL_VIDEO_DRIVER_X11_XRANDR 269#define SDL_VIDEO_DRIVER_X11_XRANDR 1 270#endif 271#ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE 272#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE "libXxf86vm.so" 273#endif 274#ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR 275#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR "libXcursor.so" 276#endif 277#ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR 278#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR "libXrandr.so" 279#endif 280#ifndef SDL_INPUT_LINUXEV 281#define SDL_INPUT_LINUXEV 1 282#endif 283#ifndef SDL_HAPTIC_LINUX 284#define SDL_HAPTIC_LINUX 1 285#endif 286#ifndef SDL_THREAD_PTHREAD_RECURSIVE_MUTEX 287#define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX 1 288#endif 289#ifndef SDL_JOYSTICK_LINUX 290#define SDL_JOYSTICK_LINUX 1 291#endif 292#ifndef SDL_THREAD_PTHREAD 293#define SDL_THREAD_PTHREAD 1 294#endif 295#ifndef SDL_POWER_LINUX 296#define SDL_POWER_LINUX 1 297#endif 298#ifndef SDL_TIMER_UNIX 299#define SDL_TIMER_UNIX 1 300#endif 301#ifndef SDL_FILESYSTEM_UNIX 302#define SDL_FILESYSTEM_UNIX 1 303#endif 304 305/* Enable assembly routines */ 306#define SDL_ASSEMBLY_ROUTINES 1 307/* #undef SDL_ALTIVEC_BLITTERS */ 308 309#endif /* _SDL_config_h */