]> icculus.org git repositories - btb/d2x.git/blob - acconfig.h
OpenGL support under Cygwin/SDL
[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 if building under msdos */
20 #undef __ENV_DJGPP__
21
22 /* Define to disable asserts, int3, etc. */
23 #undef NDEBUG
24
25 @BOTTOM@
26
27 /* General defines */
28 #define NMONO 1
29 #define PIGGY_USE_PAGING 1
30 #define NEWDEMO 1
31
32 #ifdef __ENV_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