diff options
Diffstat (limited to 'src/mesa/drivers/dri/common/glcontextmodes.c')
-rw-r--r-- | src/mesa/drivers/dri/common/glcontextmodes.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/common/glcontextmodes.c b/src/mesa/drivers/dri/common/glcontextmodes.c index beac89717a3..4bff387ae0a 100644 --- a/src/mesa/drivers/dri/common/glcontextmodes.c +++ b/src/mesa/drivers/dri/common/glcontextmodes.c @@ -31,7 +31,7 @@ * \author Ian Romanick <[email protected]> */ -#if defined(IN_DRI_DRIVER) || defined(IN_MINI_GLX) +#if defined(IN_MINI_GLX) # include <stdlib.h> # include <string.h> # include <GL/gl.h> @@ -55,11 +55,11 @@ extern void __glXFree( void * ptr ); # define _mesa_malloc(b) Xmalloc(b) # define _mesa_free(m) Xfree(m) # endif /* XFree86Server */ -#endif /* !defined(IN_DRI_DRIVER) */ +#endif /* !defined(IN_MINI_GLX) */ #include "glcontextmodes.h" -#if !defined(IN_DRI_DRIVER) && !defined(IN_MINI_GLX) +#if !defined(IN_MINI_GLX) #define NUM_VISUAL_TYPES 6 /** @@ -320,7 +320,7 @@ _gl_get_context_mode_data(const __GLcontextModes *mode, int attribute, return GLX_BAD_ATTRIBUTE; } } -#endif /* !defined(IN_DRI_DRIVER) */ +#endif /* !defined(IN_MINI_GLX) */ /** |