From 6fd48a5e1b6d27fcc50cfc74c724cae74e90a9d0 Mon Sep 17 00:00:00 2001 From: punkrockguy318 Date: Wed, 3 Mar 2010 05:46:28 +0000 Subject: [PATCH] fixed sconstruct error with asprintf --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index c6dc63fa..423c56c8 100644 --- a/SConstruct +++ b/SConstruct @@ -85,7 +85,7 @@ else: print 'Did not find libgd, you won\'t be able to create a logo screen for your avis.' if conf.CheckFunc('asprintf'): - conf.env.Append(CCFLAGS = " -DHAVE_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(CPPDEFINES = ['PSS_STYLE=1'])