mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-22 11:51:17 +00:00
23 lines
512 B
C
23 lines
512 B
C
/* Version string */
|
|
#undef VERSION
|
|
|
|
/* Define if you have the XFree86 DGA extension */
|
|
#undef HAS_DGA
|
|
|
|
/* If your version of OpenGL uses APIENTRY, define GLAPIENTRY to be APIENTRY*/
|
|
#undef GLAPIENTRY
|
|
|
|
/* Define this to something sane if you don't have stricmp */
|
|
#undef stricmp
|
|
|
|
/* Define this if you have GL_COLOR_INDEX8_EXT in GL/gl.h */
|
|
#undef HAVE_GL_COLOR_INDEX8_EXT
|
|
|
|
#if defined(X11)
|
|
# define OUTPUT_STR "X11"
|
|
#elif defined(GGI)
|
|
# define OUTPUT_STR "GGI"
|
|
#else
|
|
# define OUTPUT_STR "Unknown"
|
|
#endif
|
|
|