1#ifndef CONFIG_H
2#define CONFIG_H
3
4#define PACKAGE_NAME "supertux2"
5
6/* #undef ENABLE_SQDBG */
7
8/* #undef ENABLE_BINRELOC */
9#define INSTALL_SUBDIR_BIN "games"
10#define INSTALL_SUBDIR_SHARE "share/games/supertux2"
11
12#define SIZEOF_VOID_P 8
13#if SIZEOF_VOID_P == 8
14#define _SQ64
15#endif
16
17/* #undef HAVE_ICONV_CONST */
18#ifdef HAVE_ICONV_CONST
19#define ICONV_CONST const
20#else
21#define ICONV_CONST
22#endif
23
24/* #undef WORDS_BIGENDIAN */
25
26/* #undef HAVE_OPENGL */
27
28#define HAVE_LIBCURL
29
30#define BUILD_DATA_DIR "/home/lucius/code/supertux/data"
31
32#define BUILD_CONFIG_DATA_DIR "/home/lucius/code/supertux/build/data"
33
34#endif /*CONFIG_H*/
35