mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 14:52:08 +00:00
7e5af715bb
You will need to run automake --add-missing to create the necessary symlinks for install-sh, etc.
80 lines
2 KiB
C
80 lines
2 KiB
C
/* "Proper" package name */
|
|
#undef PROGRAM
|
|
|
|
/* Define this to the QuakeWorld standard version you support */
|
|
#undef QW_VERSION
|
|
|
|
/* Define this to the QSG standard version you support */
|
|
#undef QSG_VERSION
|
|
|
|
/* Define if you want to use QF-style defaults instead of Id-style */
|
|
#undef NEWSTYLE
|
|
|
|
/* Define this to the location of the global config file */
|
|
#undef FS_GLOBALCFG
|
|
|
|
/* Define this to the shared game directory root */
|
|
#undef FS_SHAREPATH
|
|
|
|
/* Define this to the unshared game directory root */
|
|
#undef FS_USERPATH
|
|
|
|
/* Define this to the base game for the engine to load */
|
|
#undef BASEGAME
|
|
|
|
/* Define this if you have OpenGL */
|
|
#undef HAVE_OPENGL
|
|
|
|
/* Define if you have the XFree86 DGA extension */
|
|
#undef HAVE_DGA
|
|
|
|
/* Define if you have the XFree86 VIDMODE extension */
|
|
#undef HAVE_VIDMODE
|
|
|
|
/* If your version of OpenGL uses APIENTRY, define GLAPIENTRY to be APIENTRY*/
|
|
#undef GLAPIENTRY
|
|
|
|
/* Define this if you are using Mesa */
|
|
#undef HAVE_XMESA
|
|
|
|
/* Define this if you want IPv6 support */
|
|
#undef HAVE_IPV6
|
|
|
|
/* Define this if you have GL_COLOR_INDEX8_EXT in GL/gl.h */
|
|
#undef HAVE_GL_COLOR_INDEX8_EXT
|
|
|
|
/* Define this if C symbols are prefixed with an underscore */
|
|
#undef HAVE_SYM_PREFIX_UNDERSCORE
|
|
|
|
/* Define this if you want to use Intel assembly optimizations */
|
|
#undef USE_INTEL_ASM
|
|
|
|
/* Define this if you have a Linux-style CD-ROM API */
|
|
#undef USE_LINUX_CD
|
|
|
|
/* Define this if you have a BSD-style CD-ROM API */
|
|
#undef USE_BSD_CD
|
|
|
|
/* Define this to use experimental code */
|
|
#undef _EXPERIMENTAL_
|
|
|
|
/* Define this if your system has socklen_t */
|
|
#undef HAVE_SOCKLEN_T
|
|
|
|
/* Define this if your system has size_t */
|
|
#undef HAVE_SIZE_T
|
|
|
|
/* Define this if you have ss_len member in struct sockaddr_storage (BSD) */
|
|
#undef HAVE_SS_LEN
|
|
|
|
/* Define this if you have sin6_len member in struct sockaddr_in6 (BSD) */
|
|
#undef HAVE_SIN6_LEN
|
|
|
|
/* Define this if you have sa_len member in struct sockaddr (BSD) */
|
|
#undef HAVE_SA_LEN
|
|
|
|
/* Define this to something sane if you don't have stricmp */
|
|
#undef stricmp
|
|
|
|
/* Define if you have the dlopen function. */
|
|
#undef HAVE_DLOPEN
|