From b444205399c236c21c68e2dda32ce51497dcd7e4 Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Date: Fri, 19 Mar 2010 15:26:50 -0700 Subject: [PATCH] XQuartz: GLX: Fix Availability for Tiger ppc workaround Signed-off-by: Jeremy Huddleston (cherry picked from commit 88baffc25a193c7c7154a94a687e7cb0f8b180ba) --- hw/xquartz/GL/indirect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xquartz/GL/indirect.c b/hw/xquartz/GL/indirect.c index 44380ffa0..50354433d 100644 --- a/hw/xquartz/GL/indirect.c +++ b/hw/xquartz/GL/indirect.c @@ -120,7 +120,7 @@ /* Tiger PPC doesn't have the associated symbols, but glext.h says it does. Liars! * http://trac.macports.org/ticket/20638 */ -#if defined(__ppc__) && MAC_OS_X_VERSION_MIN_REQUIRED == 1040 +#if defined(__ppc__) && MAC_OS_X_VERSION_MIN_REQUIRED < 1050 #undef GL_EXT_gpu_program_parameters #define GL_EXT_gpu_program_parameters 0 #endif