2000-01-01 20:45:27 +00:00
|
|
|
/* Version string */
|
2000-01-16 12:19:30 +00:00
|
|
|
#undef QF_VERSION
|
2000-01-02 05:34:27 +00:00
|
|
|
#undef VERSION
|
2000-01-01 20:45:27 +00:00
|
|
|
|
|
|
|
/* Define if you have the XFree86 DGA extension */
|
2000-01-15 04:42:55 +00:00
|
|
|
#undef HAS_DGA
|
2000-01-01 20:45:27 +00:00
|
|
|
|
2000-01-04 05:33:00 +00:00
|
|
|
/* If your version of OpenGL uses APIENTRY, define GLAPIENTRY to be APIENTRY*/
|
|
|
|
#undef GLAPIENTRY
|
2000-01-01 20:45:27 +00:00
|
|
|
|
2000-01-03 08:03:01 +00:00
|
|
|
/* Define this to something sane if you don't have stricmp */
|
|
|
|
#undef stricmp
|
|
|
|
|
2000-01-08 08:28:23 +00:00
|
|
|
/* Define this if you are using Mesa */
|
|
|
|
#undef XMESA
|
|
|
|
|
2000-01-01 20:45:27 +00:00
|
|
|
/* Define this if you have GL_COLOR_INDEX8_EXT in GL/gl.h */
|
|
|
|
#undef HAVE_GL_COLOR_INDEX8_EXT
|
|
|
|
|
2000-01-06 00:54:51 +00:00
|
|
|
/* Define this if C symbols are prefixed with an underscore */
|
|
|
|
#undef HAVE_SYM_PREFIX_UNDERSCORE
|
|
|
|
|
2000-01-06 02:31:32 +00:00
|
|
|
/* 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
|
|
|
|
|
2000-01-08 08:28:23 +00:00
|
|
|
/* Define this to use experimental code */
|
2000-01-15 04:42:55 +00:00
|
|
|
#undef _EXPERIMENTAL_
|
2000-01-08 08:28:23 +00:00
|
|
|
|
2000-01-03 01:40:54 +00:00
|
|
|
#if defined(X11)
|
|
|
|
# define OUTPUT_STR "X11"
|
|
|
|
#elif defined(GGI)
|
|
|
|
# define OUTPUT_STR "GGI"
|
|
|
|
#else
|
|
|
|
# define OUTPUT_STR "Unknown"
|
|
|
|
#endif
|
|
|
|
|