]> icculus.org git repositories - btb/d2x.git/blob - acconfig.h
Changed __ENV_DJGPP__ to __DJGPP__, since it's built-in.
[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 an OpenGL build */
8 #undef OGL
9
10 /* Define if you want an SVGALib build */
11 #undef SVGA
12
13 /* Define if you want a GGI build */
14 #undef GGI
15
16 /* Define if building under linux */
17 #undef __ENV_LINUX__
18
19 /* Define to disable asserts, int3, etc. */
20 #undef NDEBUG
21
22 @BOTTOM@
23
24 /* General defines */
25 #define NMONO 1
26 #define PIGGY_USE_PAGING 1
27 #define NEWDEMO 1
28
29 #ifdef __ENV_LINUX__
30 # define __SDL__ 1
31 # define SDL_AUDIO 1
32
33 # ifdef OGL
34 #  define SDL_GL_VIDEO 1
35 #  define SDL_INPUT 1
36 # else
37 #  ifdef GGI
38 #   define GGI_VIDEO 1
39 #   define GII_INPUT 1
40 #  else
41 #   ifdef SVGA
42 #    define SVGALIB_VIDEO 1
43 #    define SVGALIB_INPUT 1
44 #   else
45 #    define SDL_VIDEO 1
46 #    define SDL_INPUT 1
47 #   endif
48 #  endif
49 # endif
50 #endif