From ec43e84f642ad2379cedd83d19ac2d408b5adfdc Mon Sep 17 00:00:00 2001 From: punkrockguy318 Date: Wed, 31 Mar 2010 03:41:39 +0000 Subject: [PATCH] sdl: fixed some sconstruct glitch that didn't allow openGL to build --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 423c56c8..12d3ef55 100644 --- a/SConstruct +++ b/SConstruct @@ -87,7 +87,7 @@ else: if conf.CheckFunc('asprintf'): conf.env.Append(CCFLAGS = "-DHAVE_ASPRINTF") if env['OPENGL'] and conf.CheckLibWithHeader('GL', 'GL/gl.h', 'c++', autoadd=1): - conf.env.Append(CCFLAGS = " -DOPENGL") + conf.env.Append(CCFLAGS = "-DOPENGL") conf.env.Append(CPPDEFINES = ['PSS_STYLE=1']) # parse SDL cflags/libs env.ParseConfig('sdl-config --cflags --libs')