]> icculus.org git repositories - btb/d2x.git/blob - acconfig.h
lots of makefile fixes, and sdl joystick stuff
[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 /* Define to render endlevel flythrough sequences (instead of movies) */
29 #undef NMOVIES
30
31 /* Define to use SDL Joystick */
32 #undef SDL_JOYSTICK
33
34 @BOTTOM@
35
36 /* General defines */
37 #define NMONO 1
38 #define PIGGY_USE_PAGING 1
39 #define NEWDEMO 1
40
41 #ifdef __linux__
42 # define __SDL__ 1
43 # define SDL_AUDIO 1
44
45 # ifdef OGL
46 #  define SDL_GL_VIDEO 1
47 #  define SDL_INPUT 1
48 # else
49 #  ifdef GGI
50 #   define GGI_VIDEO 1
51 #   define GII_INPUT 1
52 #  else
53 #   ifdef SVGA
54 #    define SVGALIB_VIDEO 1
55 #    define SVGALIB_INPUT 1
56 #   else
57 #    define SDL_VIDEO 1
58 #    define SDL_INPUT 1
59 #   endif
60 #  endif
61 # endif
62 #endif
63
64 #ifdef __MINGW32__
65 # define __SDL__ 1
66 # define SDL_AUDIO 1
67 # define SDL_INPUT 1
68 # ifdef OGL
69 #  define SDL_GL_VIDEO 1
70 # else
71 #  define SDL_VIDEO 1
72 # endif
73 #endif