summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Windows test fix: enhance the TestSCons class so an explicitSteven Knight2008-09-204-7/+10
| | | | | | python=None argument still defaults to sys.executable. Use this to reset the python value we interpolate into the expected files that we generate after resetting the os.environ['PYTHON'] value.
* Fix indentation issueWilliam Deegan2008-09-201-3/+3
|
* Fix broken swig tests when python being used to run tests is incompatible ↵William Deegan2008-09-205-0/+5
| | | | | | with system swig. Propagate to the created SConstructs the version of swig found by the test (which is used to determine whether to run or not run this test).
* Fix test/VariantDir/VariantDir.py on centos5, currently failing as ↵William Deegan2008-09-201-0/+3
| | | | TestSCons.py specifies incorrect fortran library to link against for gcc's newer then 4.0 (aka 4.1.2 which ships with python)
* Call str() on the string values of environment variables used by theSteven Knight2008-09-201-1/+3
| | | | | _subproc(), so the underlying subprocess.Popen() call won't throw an exception if the value is actually a Unicode string.
* Windows portability: escape strings with file path names, whichSteven Knight2008-09-201-2/+2
| | | | have \ separators on Windows.
* Windows portability: use os.path.join() for expected subdirectory paths.Steven Knight2008-09-201-1/+6
|
* Make the test/MSVC/{msvc,hierarchical}.py tests work even ifSteven Knight2008-09-192-4/+4
| | | | %INCLUDE% and %LIB% aren't set.
* Windows portability in the expected output.Steven Knight2008-09-191-4/+4
|
* Fix issue #2091 by adding new delete_existing flags to Util.{Ap,Pre}pendPath ↵Gary Oberbrunner2008-09-185-35/+216
| | | | and env.{Ap,Pre}pendENVPath.
* Hefty update to the tex tool.Robert Managan2008-09-188-187/+702
| | | | | | | | | | | | | | | It now iterates until all the warnings are gone and the auxiliary files stop changing or it hits the max retires limit. It adds the common auxiliary files to the emitter as sideeffects Added support for glossaries, nomenclatures, lists of figures, lists of tables, hyperref, and beamer The user can entry environment changes like env['TEXINPUTS'] and they get copied to env['ENV']['TEXINPUTS'] (thanks to Dmitry Mikhin ) It also works with variantdir, duplicate =0
* Make the test/TEX/LATEX*py scripts work even on systems that don't haveSteven Knight2008-09-171-0/+3
| | | | all the right tools installed.
* Fix doc typo reported in the mailing list and another small glitchGreg Noel2008-09-171-7/+10
|
* Make the framework library path we return on Mac OS X match the frameworkSteven Knight2008-09-161-7/+8
| | | | | | paths for executables and headers, so tests like test/SWIG/live.py work even if there are multiple Python versions installed with frameworks in different locations.
* Fix error reported on IRCGreg Noel2008-09-162-2/+2
|
* Update project highlights and roadmap for 1.0.1.d20080915 checkpoint.Steven Knight2008-09-152-2/+9
|
* Revert 2102, pending additional discussion.Steven Knight2008-09-153-202/+3
|
* Issue 2102: Add support for Visual Studio 9 and newer PlatformSteven Knight2008-09-153-3/+202
| | | | SDK versions. (Dmitri Rubinstein)
* Better layout for table elementsGreg Noel2008-09-152-22/+22
|
* W3C sez no lists inside paragraphsGreg Noel2008-09-141-0/+2
|
* Add blurb before schedule table and revise descriptions of release typesGreg Noel2008-09-141-16/+29
|
* use right entity name for table dataGreg Noel2008-09-142-75/+75
|
* New schedule, plus machinery to maintain itGreg Noel2008-09-143-82/+178
|
* Minor nits and typosGreg Noel2008-09-144-7/+7
|
* Issue 2106: Don't match a directory that matches the name of aSteven Knight2008-09-143-3/+101
| | | | #include file. (John Gozde)
* Issue 1693: make the subdirectory in which the .sconsign file willSteven Knight2008-09-149-114/+248
| | | | appear (if it doesn't already exist. (Damyan Pepper, Jim Randall)
* Fix for Python versions before 2.2, where tuple() requires an argument.Steven Knight2008-09-131-1/+1
|
* Fix the "explicit stack size" warning message on earlier versions ofSteven Knight2008-09-131-2/+2
| | | | Python that don't support it.
* Revert the previous change, I overlooked some regression test failures.Steven Knight2008-09-138-246/+114
|
* Issue 1693: Make the directory in which the .sconsign file will live,Steven Knight2008-09-138-114/+246
| | | | if the directory doesn't already exist. (Damyan Pepper, Jim Randall)
* Update src/CHANGES.txt for the checked-in 1.1 changes.Steven Knight2008-09-131-0/+43
|
* Issue 2121: fix handling #includes of files in VariantDir subdirectories,Steven Knight2008-09-133-1/+88
| | | | | | by having it handle checking for VariantDir directories on disk like it does VariantDir files. (patch: Jared Grubb; test case: Ali Tofigh)
* Additional clean up of how we import some SCons.* module names, includingSteven Knight2008-09-133-8/+7
| | | | | | making SCons.Job.stack_size a variable that always exists, instead of one that gets set from outside and requires SCons.Job to check for an AttributeError.
* Sigh, I keep doing it, another typoGreg Noel2008-09-121-2/+2
|
* Sigh, I made the last update from the wrong tree, which had a typoGreg Noel2008-09-121-2/+2
|
* Issue 2179: Null Executor memory reductionsLudwig Hähne2008-09-121-12/+47
|
* Add common subproc function and modify routines to use itGreg Noel2008-09-124-22/+67
|
* Fix errors that cropped up in revision 3382Greg Noel2008-09-122-1/+2
|
* Evaluate compat module transparently when SCons is instantiatedGreg Noel2008-09-1118-35/+4
|
* Issue 2005: Avoid an infinite loop looking for the Python librarySteven Knight2008-09-113-18/+27
| | | | | directory. Look for a "scons-local" directory in addition to a "scons-local-{version}" directory.
* Issue 1681: Fix the ability of add_src_builder() to handle arbitrarySteven Knight2008-09-114-6/+81
| | | | | builder objects by eliminating unintentional re-use of a class list for the src_builder attribute.
* Add the ability of the Tex builder to change the name of the createdRobert Managan2008-09-102-1/+106
| | | | | file to what the user requested in the target. Tex produces a standard name based on the source so this was not being done.
* Issue 2149: Avoid reference cycles caused by frame objectsLudwig Hähne2008-09-103-3/+11
|
* Issues 2076 and 2232, use ENV and suppress stderr when checking GCC version IDGreg Noel2008-09-102-6/+32
|
* Fix bugs in regression testsGreg Noel2008-09-102-1/+7
|
* Issue 1913: use cProfile instead of profile if availableGreg Noel2008-09-091-1/+4
|
* Fix typo for msvc.py.David Cournapeau2008-09-091-2/+2
|
* Merged revisions ↵Steven Knight2008-09-095-24/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3289,3291-3299,3301-3313,3315-3347,3349-3350,3352-3354,3356,3358-3360,3362-3374,3376-3377 via svnmerge from http://scons.tigris.org/svn/scons/checkpoint ................ r3315 | stevenknight | 2008-08-26 09:44:08 -0700 (Tue, 26 Aug 2008) | 2 lines Update {CHANGES,RELEASE}.txt for today's checkpoint release. ................ r3344 | stevenknight | 2008-09-06 02:35:58 -0700 (Sat, 06 Sep 2008) | 3 lines Initialized merge tracking via "svnmerge" with revisions "1-3343" from http://scons.tigris.org/svn/scons/release ................ r3347 | stevenknight | 2008-09-06 02:40:06 -0700 (Sat, 06 Sep 2008) | 3 lines Removed unnecessary svnmerge-integrated tags (for /branches/*) copied over from /trunk. ................ r3377 | stevenknight | 2008-09-08 23:55:31 -0700 (Mon, 08 Sep 2008) | 18 lines Merged revisions 3344,3346-3348,3350-3351,3353-3355,3357,3359-3361,3363-3375 via svnmerge from http://scons.tigris.org/svn/scons/release ........ r3346 | stevenknight | 2008-09-06 02:38:28 -0700 (Sat, 06 Sep 2008) | 3 lines Remove unnecessary svnmerge-integrated tags (for /branches/* and /trunk) copied over from the /checkpoint branch. ........ r3359 | stevenknight | 2008-09-06 04:10:35 -0700 (Sat, 06 Sep 2008) | 2 lines Update information for release 1.0.1. ........ r3363 | stevenknight | 2008-09-06 07:29:51 -0700 (Sat, 06 Sep 2008) | 2 lines Release update for the last-minute Ubuntu variable name patch. ........ ................
* Issue 1307: Invalidate node caches after Execute()Ludwig Hähne2008-09-083-1/+162
|
* formatting errorGreg Noel2008-09-081-1/+0
|