]> icculus.org git repositories - btb/d2x.git/blob - acconfig.h
move unused ipx_udp.c to EXTRA_DIST
[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 to build the demo version */
11 #undef SHAREWARE
12
13 /* Define if you want an OpenGL build */
14 #undef OGL
15
16 /* Define if you want an SVGALib build */
17 #undef SVGA
18
19 /* Define if you want a GGI build */
20 #undef GGI
21
22 /* Define to disable asserts, int3, etc. */
23 #undef NDEBUG
24
25 /* Define to enable cross-platform bitmap/palette loading functions */
26 #undef PORTABLE_LOADER
27
28 @BOTTOM@
29
30 /* General defines */
31 #define NMONO 1
32 #define PIGGY_USE_PAGING 1
33 #define NEWDEMO 1
34 #define NMOVIES 1
35
36 #ifdef __linux__
37 # define __SDL__ 1
38 # define SDL_AUDIO 1
39
40 # ifdef OGL
41 #  define SDL_GL_VIDEO 1
42 #  define SDL_INPUT 1
43 # else
44 #  ifdef GGI
45 #   define GGI_VIDEO 1
46 #   define GII_INPUT 1
47 #  else
48 #   ifdef SVGA
49 #    define SVGALIB_VIDEO 1
50 #    define SVGALIB_INPUT 1
51 #   else
52 #    define SDL_VIDEO 1
53 #    define SDL_INPUT 1
54 #   endif
55 #  endif
56 # endif
57 #endif
58
59 #ifdef __MINGW32__
60 #define __SDL__ 1
61 #define SDL_VIDEO 1
62 #define SDL_INPUT 1
63 #endif