Files
commandergenius/project/jni/application/supertux/config.h
2014-11-08 01:26:42 +02:00

35 lines
541 B
C

#ifndef CONFIG_H
#define CONFIG_H
#define PACKAGE_NAME "supertux2"
/* #undef ENABLE_SQDBG */
/* #undef ENABLE_BINRELOC */
#define INSTALL_SUBDIR_BIN "games"
#define INSTALL_SUBDIR_SHARE "share/games/supertux2"
#ifdef __LP64__
#define SIZEOF_VOIDP 8
#else
#define SIZEOF_VOIDP 4
#endif
#if SIZEOF_VOID_P == 8
#define _SQ64
#endif
/* #undef HAVE_ICONV_CONST */
#ifdef HAVE_ICONV_CONST
#define ICONV_CONST const
#else
#define ICONV_CONST
#endif
/* #undef WORDS_BIGENDIAN */
#define HAVE_OPENGL
#define HAVE_LIBCURL
#endif /*CONFIG_H*/