summaryrefslogtreecommitdiff
path: root/scons/custom.py
AgeCommit message (Collapse)AuthorFilesLines
2014-01-17s/Tungsten Graphics/VMware/José Fonseca1-2/+2
Tungsten Graphics Inc. was acquired by VMware Inc. in 2008. Leaving the old copyright name is creating unnecessary confusion, hence this change. This was the sed script I used: $ cat tg2vmw.sed # Run as: # # git reset --hard HEAD && find include scons src -type f -not -name 'sed*' -print0 | xargs -0 sed -i -f tg2vmw.sed # # Rename copyrights s/Tungsten Gra\(ph\|hp\)ics,\? [iI]nc\.\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./g /Copyright/s/Tungsten Graphics\(,\? [iI]nc\.\)\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./ s/TUNGSTEN GRAPHICS/VMWARE/g # Rename emails s/alanh@tungstengraphics.com/alanh@vmware.com/ s/jens@tungstengraphics.com/jowen@vmware.com/g s/jrfonseca-at-tungstengraphics-dot-com/jfonseca-at-vmware-dot-com/ s/jrfonseca\?@tungstengraphics.com/jfonseca@vmware.com/g s/keithw\?@tungstengraphics.com/keithw@vmware.com/g s/michel@tungstengraphics.com/daenzer@vmware.com/g s/thomas-at-tungstengraphics-dot-com/thellstom-at-vmware-dot-com/ s/zack@tungstengraphics.com/zackr@vmware.com/ # Remove dead links s@Tungsten Graphics (http://www.tungstengraphics.com)@Tungsten Graphics@g # C string src/gallium/state_trackers/vega/api_misc.c s/"Tungsten Graphics, Inc"/"VMware, Inc"/ Reviewed-by: Brian Paul <brianp@vmware.com>
2013-06-08scons: Fix implicit python dependency discovery on Windows.José Fonseca1-1/+2
Probably due to CRLF endings, the discovery of python import statements was not working on Windows builds, causing incremental builds to often fail unless one wiped out the build directory. NOTE: This is a candidate for stable branches.
2013-01-23scons: Fix source lists parsing on Windows.José Fonseca1-2/+7
/ vs \ mismatch was causing .objs to be put in the source tree, causing breakeage when doing different build types in the same tree (eg., debug vs release). Fix this by normalizing everything to / slashes. It's probably a good idea to purge all .objs from source tree to prevent issues completely.
2012-08-16scons: Fix MinGW cross compilation.José Fonseca1-3/+22
Compensate for the recent changes and assumptions added to Makefiles.sources
2012-08-14scons: Populate top_srcdir and top_builddir variables when reading ↵José Fonseca1-0/+4
Makefiles.sources. This is not entirely correct, as scons doesn't put binaries in a "src" subdirectory, but doesn't seem to be a problem for now.
2012-02-07scons: Require same pkg-config versions as configure.José Fonseca1-1/+4
2011-09-20scons: MacOSX build fixes.José Fonseca1-4/+2
2011-08-23scons: add ParseSourceList methodChia-I Wu1-0/+36
ParseSourceList() can be used to parse a source list file and returns the source files defined in it. It is supposed to be used like this # get the list of source files from C_SOURCES in Makefile.sources sources = env.ParseSourceList('Makefile.sources', 'C_SOURCES') The syntax of a source list file is compatible with GNU Make. This effectively allows SConscript and Makefile to share the source lists. Acked-by: José Fonseca <jfonseca@vmware.com> Acked-by: Chad Versace <chad@chad-versace.us>
2011-06-30scons: Expose pkg-config in a simpler manner.José Fonseca1-0/+76
2011-06-17scons: Accept verbose=yes instead of quiet=no.José Fonseca1-1/+2
'verbose' is affirmative, and much more common name for this sort of option.
2011-05-04scons: Add a few more human friendly messages.José Fonseca1-0/+1
2011-03-03scons: Add human friendlier build messages for lex/yacc.José Fonseca1-0/+2
2010-02-10scons: User friendly message for code generated filesJosé Fonseca1-1/+3
2010-01-02scons: Remove duplicated code.José Fonseca1-31/+0
2010-01-01scons: Expose convienience libraries to the host environment.José Fonseca1-0/+198
This fixes MinGW cross compilation build, recently broken due to the use of convenience libraries in the GLSL preprocessor.