1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
/* Configuration of Slash'em for Debian:
*
* This file includes a bit of magic to make it posible to build several
* window interfaces in seperate binaries without patching config.h.
*/
#if defined DEBIAN_TTY
# define TTY_GRAPHICS
# define NH_CONFIG_FILE ".slashemrc"
#endif
#if defined DEBIAN_X11
# define X11_GRAPHICS
# define DEFAULT_WC_TILED_MAP
# define DEFAULT_WINDOW_SYS "X11"
# define NH_CONFIG_FILE ".slashemrc-x11"
#endif
#if defined DEBIAN_SDL
# define SDL_GRAPHICS
# define DEFAULT_WC_TILED_MAP
# define NH_CONFIG_FILE ".slashemrc-sdl"
#endif
#if defined DEBIAN_GTK
# define PROXY_GRAPHICS
# define GTK_GRAPHICS
# define GTK_PROXY
# define DEFAULT_WC_TILED_MAP
# define NH_CONFIG_FILE ".slashemrc-gtk"
#endif
#if defined DEBIAN_QT
# define QT_GRAPHICS
# define NH_CONFIG_FILE ".slashemrc-qt"
#endif
#define USE_XPM
|