From c51606772feff1b5102642d1207e9195cb8ac96d Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 9 May 2011 17:31:42 -0400 Subject: [PATCH] build with -Wall and -DGL_GLEXT_PROTOTYPES --- glslUtil/SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glslUtil/SConstruct b/glslUtil/SConstruct index cef95c3..7be3e6c 100644 --- a/glslUtil/SConstruct +++ b/glslUtil/SConstruct @@ -1,4 +1,4 @@ # vim:filetype=python -env = Environment() +env = Environment(CFLAGS = ['-Wall'], CPPFLAGS = ['-DGL_GLEXT_PROTOTYPES']) env.Object('glslUtil.o', 'glslUtil.c')