From 5fd97573e3c35d5e7e2b17dc2795dc9292ea944c Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Mon, 26 Apr 2010 01:08:34 -0700 Subject: scons: Include headers from the local include directory first. Certain headers, such as GL/glew.h, are in both the Mesa include and the default installed include directories. On recent distros the needed symbols can be found in both places. On older distros the installed headers could be lacking symbols, so for a header that exists in both places, the local one should be found first. --- SConstruct | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index de3f6ea5c3..3a4ff9a3fa 100644 --- a/SConstruct +++ b/SConstruct @@ -113,8 +113,10 @@ if env['llvm'] and 'llvmpipe' not in env['drivers']: env['drivers'].append('llvmpipe') # Includes -env.Append(CPPPATH = [ +env.Prepend(CPPPATH = [ '#/include', +]) +env.Append(CPPPATH = [ '#/src/gallium/include', '#/src/gallium/auxiliary', '#/src/gallium/drivers', -- cgit v1.2.3