diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/glu/sgi/libutil/mipmap.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/glu/sgi/libutil/mipmap.c b/src/glu/sgi/libutil/mipmap.c index 44f519a4e2..d65b7f689f 100644 --- a/src/glu/sgi/libutil/mipmap.c +++ b/src/glu/sgi/libutil/mipmap.c @@ -6627,7 +6627,7 @@ typedef void (GLAPIENTRY *TexImage3Dproc)( GLenum target, GLint level,  static TexImage3Dproc pTexImage3D = 0; -#ifndef _WIN32 +#if !defined(_WIN32) && !defined(__WIN32__)  #  include <dlfcn.h>  #  include <sys/types.h>  #else @@ -6642,7 +6642,7 @@ static void gluTexImage3D( GLenum target, GLint level,  			   const GLvoid *pixels )  {     if (!pTexImage3D) { -#ifdef _WIN32 +#if defined(_WIN32) || defined(__WIN32__)        pTexImage3D = (TexImage3Dproc) wglGetProcAddress("glTexImage3D");        if (!pTexImage3D)  	 pTexImage3D = (TexImage3Dproc) wglGetProcAddress("glTexImage3DEXT"); | 
