]> icculus.org git repositories - btb/d2x.git/blob - acconfig.h
Imported from d1x
[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 to disable asserts, int3, etc. */
17 #undef NDEBUG
18
19 @BOTTOM@
20
21 /* General defines */
22 #define NMONO 1
23 #define PIGGY_USE_PAGING 1
24 #define NEWDEMO 1
25
26 #ifdef __linux__
27 # define __SDL__ 1
28 # define SDL_AUDIO 1
29
30 # ifdef OGL
31 #  define SDL_GL_VIDEO 1
32 #  define SDL_INPUT 1
33 # else
34 #  ifdef GGI
35 #   define GGI_VIDEO 1
36 #   define GII_INPUT 1
37 #  else
38 #   ifdef SVGA
39 #    define SVGALIB_VIDEO 1
40 #    define SVGALIB_INPUT 1
41 #   else
42 #    define SDL_VIDEO 1
43 #    define SDL_INPUT 1
44 #   endif
45 #  endif
46 # endif
47 #endif