Sourceforge Patch #67 Fix build failure on OS X < 10.7

This commit is contained in:
Nigel Stewart 2016-07-09 14:23:57 +10:00
parent 9c6989a59e
commit 26d8275c61

View File

@ -430,7 +430,8 @@ GLboolean glewCreateContext (struct createParams *params)
i = 0; i = 0;
contextAttrs[i++] = kCGLPFAAccelerated; /* No software rendering */ contextAttrs[i++] = kCGLPFAAccelerated; /* No software rendering */
#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_7 /* MAC_OS_X_VERSION_10_7 == 1070 */
#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
if (params->profile & GL_CONTEXT_CORE_PROFILE_BIT) if (params->profile & GL_CONTEXT_CORE_PROFILE_BIT)
{ {
if (params->major==3 && params->minor>=2) if (params->major==3 && params->minor>=2)