]> icculus.org git repositories - btb/d2x.git/blob - acconfig.h
added d_realloc/mem_realloc functions
[btb/d2x.git] / acconfig.h
1 /* Define if you want an assembler free build */
2 #undef NO_ASM
3
4 /* Define if you want a network build */
5 #undef NETWORK
6
7 /* Define if you want to build the editor */
8 #undef EDITOR
9
10 /* Define if you want an OpenGL build */
11 #undef OGL
12
13 /* Define if you want an SVGALib build */
14 #undef SVGA
15
16 /* Define if you want a GGI build */
17 #undef GGI
18
19 /* Define to disable asserts, int3, etc. */
20 #undef NDEBUG
21
22 /* Define to enable cross-platform bitmap/palette loading functions */
23 #undef PORTABLE_LOADER
24
25 @BOTTOM@
26
27 /* General defines */
28 #define NMONO 1
29 #define PIGGY_USE_PAGING 1
30 #define NEWDEMO 1
31
32 #ifdef __linux__
33 # define __SDL__ 1
34 # define SDL_AUDIO 1
35
36 # ifdef OGL
37 #  define SDL_GL_VIDEO 1
38 #  define SDL_INPUT 1
39 # else
40 #  ifdef GGI
41 #   define GGI_VIDEO 1
42 #   define GII_INPUT 1
43 #  else
44 #   ifdef SVGA
45 #    define SVGALIB_VIDEO 1
46 #    define SVGALIB_INPUT 1
47 #   else
48 #    define SDL_VIDEO 1
49 #    define SDL_INPUT 1
50 #   endif
51 #  endif
52 # endif
53 #endif
54
55 #ifdef __MINGW32__
56 #define SDL_VIDEO 1
57 #define SDL_INPUT 1
58 #endif