Add to CHANGES.txt
[scons.git] / CHANGES.txt
blobae754ef68369b5aa5670dce4bfcfb15241c0f421
3                  SCons - a software construction tool
5                             Change Log
7 NOTE: The 4.0.0 Release of SCons dropped Python 2.7 Support
9 RELEASE  VERSION/DATE TO BE FILLED IN LATER
11   From Joseph Brill:
12     - Internal MSVC and test updates: Rework the msvc installed versions cache so that it
13       is not exposed externally and update external references accordingly.
14     - Modify the MSCommon internal-use only debug logging records to contain the correct relative
15       file path when the debug function is called from outside the MSCommon module.
17   From William Deegan:
18     - Fix yacc tool, not respecting YACC set at time of tool initialization.
19     - Refactor SCons.Tool to move all common shared and loadable module linking logic to SCons.Tool.linkCommon
20     - Remove pywin32 imports from SCons.Script.Main. No longer needed.
21     - Switch to use ctypes instead of pywin32 (requiring an extra pip install) - Fixes Github Issue #2291
22        - pywin32 no longer necessary for SCons install. (pip install SCons will no longer also require pywin32 on win32)
23        - Remove pywin32 usage from SCons.Util where it was used for accessing the registry. Python native winreg
24          library already includes this functionality.
25        - Remove using pywin32 to retrieve peak memory usage on Win32 for `--debug=memory`
26     - Fix Issue #3759 - include scons.1, sconsign.1, scons-time.1 manpages in sdist and wheel packages.
27     - Change SCons's build so the generated `SCons/__init__.py` is no longer removed by `scons -c`
30   From Michał Górny:
31     - Fix dvipdf test failure due to passing incorrect flag to dvipdf.
33   From Adam Gross:
34     - Fix minor bug affecting SCons.Node.FS.File.get_csig()'s usage of the MD5 chunksize.
35       User-facing behavior does not change with this fix (GH Issue #3726).
37   From Joachim Kuebart:
38     - Suppress missing SConscript deprecation warning if `must_exist=False`
39       is used.
41   From Rocco Matano:
42     - Fix Zip tool to respect ZIPCOMSTR. Previously all zip builder calls would yield something
43       like zip(["test.zip"], ["zip_scons.py"]) and ignore ZIPCOMSTR if ZIPCOM and ZIPCOMSTR
44       weren't set after the Environment/Tool is initialized. (Explained in PR #3659)
46   From Daniel Moody:
47     - Fix issue where java parsed a class incorrectly from lambdas used after a new.
49   From Mats Wichmann:
50     - Complete tests for Dictionary, env.keys() and env.values() for
51       OverrideEnvironment. Enable env.setdefault() method, add tests.
52     - Raise an error if an option (not otherwise consumed) is used which
53       looks like an abbreviation of one one added by AddOption. (#3653)
54     - Tool module not found will now raise a UserError to more clearly indicate this is
55       probably an SConscript problem, and to make the traceback more relevant.
56     - Fix three issues with MergeFlags: 
57       - Signature/return did not match documentation or existing usage - the implementation 
58         now no longer returns the passed env
59       - merging --param arguments did not work (issue #3107); 
60       - passing a dict to merge where the values are strings failed (issue #2961).
61     - Include previously-excluded SideEffect section in User Guide.
62     - Clean up unneeded imports (autoflake tool).
63     - Make sure cProfile is used if profiling - SCons was expecting
64       the Util module to monkeypatch in cProfile as profile if available,
65       but this is no longer being done.
67   From Simon Tegelid
68     - Fix using TEMPFILE in multiple actions in an action list. Previously a builder, or command
69       with an action list like this:
70       ['${TEMPFILE("xxx.py -otempfile $SOURCE")}', '${TEMPFILE("yyy.py -o$TARGET tempfile")}']
71       Could yield a single tempfile with the first TEMPFILE's contents, used by both steps
72       in the action list.
78 RELEASE 4.0.1 - Mon, 16 Jul 2020 16:06:40 -0700
80   From Rob Boehne:
81     - Fix fortran tools to set SHFORTRAN variables to $FORTRAN, similarly SHF77, SHF90, SHF95,
82       SHF03 and SHF08 will default to the variables $F77, $F90, $F95, $F03 and $F08 respectively.
83       If you were depending on changing the value of FORTRAN (or $F[0-9][0-9]) having no effect
84       on the value of SHFORTRAN, this change will break that.   The values of FORTRAN, F77, F90,
85       F95, F03, F08 and SHFORTRAN, SHF77 (etc.) now are not overridden in generate if alredy set
86       by the user.
87     - Fix subprocess execution of 'lslpp' on AIX to produce text standard i/o.
88     - Re-do the fix for suncxx tool (Oracle Studio compiler) now that only Python 3 is supported,
89       to avoid decoding errors.
91   From William Deegan:
92     - Added Environment() variable TEMPFILEDIR which allows setting the directory which temp
93       files createdby TEMPFILEMUNGE are created in.
95   From Daniel Moody:
96     - Added method on Node to test if its node used in SConf. (Github Issue #3626)
100 RELEASE 4.0.0 - Sat, 04 Jul 2020 12:00:27 +0000
102   From Dirk Baechle:
103     - Updated documentation toolchain to work properly under Python3, also
104       removed libxslt support from the Docbook Tool. (issue #3580)
105     - Added Docker images for building and testing SCons. (issue #3585)
107   From James Benton:
108     - Improve Visual Studio solution/project generation code to add support
109       for a per-variant cppflags. Intellisense can be affected by cppflags,
110       this is especially important when it comes to /std:c++* which specifies
111       what C++ standard version to target. SCons will append /Zc:__cplusplus
112       to the project's cppflags when a /std:c++* flag is found as this is
113       required for intellisense to use the C++ standard version from cppflags.
115   From Rob Boehne
116     - Specify UTF-8 encoding when opening Java source file as text.  By default, encoding is the output
117     of locale.getpreferredencoding(False), and varies by platform.
119   From Joseph Brill:
120     - MSVC updates: When there are multiple product installations (e.g, Community and
121       Build Tools) of MSVC 2017 or MSVC 2019, an Enterprise, Professional,
122       or Community installation will be selected before a Build Tools installation when
123       "14.1" or "14.2" is requested, respectively. (GH Issue #3699).
124     - MSVC updates: When there are multiple product installations of MSVC 2017 (e.g.,
125       Community and Express), 2017 Express is no longer returned when "14.1" is
126       requested.  Only 2017 Express will be returned when "14.1Exp" is requested.
127       (GH Issue #3699).
128     - MSVC updates: An MSVC 6.0 installation now appears in the installed versions list
129       when msvc debug output is enabled (GH Issue #3699).
130     - MSVS test updates: Tests for building a program using generated MSVS project and
131       solution files using MSVS 2015 and later now work as expected on x86 hosts.
132     - Test update: Reduce the number of "false negative" test failures for the interactive
133       configuration test (test/interactive/configure.py).
134     - MSVS update: Fix the development environment path for MSVS 7.0.
136   From William Deegan:
137     - Fix broken clang + MSVC 2019 combination by using MSVC configuration logic to
138       propagate'VCINSTALLDIR' and 'VCToolsInstallDir' which clang tools use to locate
139       header files and libraries from MSVC install. (Fixes GH Issue #3480)
140     - Added C:\msys64\mingw64\bin to default mingw and clang windows PATH's.  This
141       is a reasonable default and also aligns with changes in Appveyor's VS2019 image.
142     - Drop support for Python 2.7. SCons will be Python 3.5+ going forward.
143     - Change SCons.Node.ValueWithMemo to consider any name passed when memoizing Value() nodes
144     - Fix Github Issue #3550 - When using Substfile() with a value like Z:\mongo\build\install\bin
145       the implementation using re.sub() would end up interpreting the string and finding regex escape
146       characters where it should have been simply replacing existing text. Switched to use string.replace().
147     - Fix Github Issue #2904 - Provide useful error message when more than one Configure Contexts are opened.
148       Only one open is allowed. You must call conf.Finish() to complete the currently open one before creating another
149     - Add msys2 installed mingw default path to PATH for mingw tool.
150       - C:\msys64\mingw64\bin
151     - Purge obsolete internal build and tooling scripts
152     - Allow user specified location for vswhere.exe specified by VSWHERE.
153       NOTE: This must be set at the time the 'msvc' 'msvs' and/or 'mslink' tool(s) are initialized to have any effect.
154     - Resolve Issue #3451 and Issue #3450 - Rewrite SCons setup.py and packaging. Move script logic to entry points so
155       package can create scripts which use the correct version of Python.
156     - Resolve Issue #3248 - Removing '-Wl,-Bsymbolic' from SHLIBVERSIONFLAGS
157       NOTE: If your build depends on the above you must now add to your SHLIBVERSIONFLAGS
158     - Speedup bin/docs-update-generated by caching parsed docbook schema. (60x speedup)
159     - Reorganized source tree. Moved src/engine/SCons to SCons to be more in line with current Python source
160       tree organization practices.
161     - Renamed as.py to asm.py and left redirecting tool.  'as' is a reserved word and so
162       changing the name was required as we wanted to import symbols for use in compilation_db
163       tool.
164     - Add CompilationDatabase() builder in compilation_db tool. Contributed by MongoDB.
165       Setting COMPILATIONDB_USE_ABSPATH to True|False controls whether the files are absolute or relative
166       paths.  Address Issue #3693 and #3694 found during development.
167     - Fixed Github Issue 3628 - Hardcoding pickle protocol to 4 (supports python 3.4+)
168       and skipping Python 3.8's new pickle protocol 5 whose main advantage is for out-of-band data buffers.
169       NOTE: If you used Python 3.8 with SCons 3.0.0 or above, you may get a a pickle protocol error. Remove your
170       .sconsign.dblite. You will end up with a full rebuild.
172   From Andrii Doroshenko:
173     - Extended `Environment.Dump()` to select a format to serialize construction variables (pretty, json).
175   From Jeremy Elson:
176     - Updated design doc to use the correct syntax for Depends()
178   From Adam Gross:
179     - Added support for scanning multiple entries in an action string if
180       IMPLICIT_COMMAND_DEPENDENCIES is set to 2 or 'all'. This enables more thorough
181       action scanning where every item in each command line is scanned to determine
182       if it is a non-source and non-target path and added to the list of implicit dependencies
183       for the target.
184     - Added support for taking instances of the Value class as implicit
185       dependencies.
186     - Added new module SCons.Scanner.Python to allow scanning .py files.
187     - Added support for explicitly passing a name when creating Value() nodes. This may be useful
188       when the value can't be converted to a string or if having a name is otherwise desirable.
189     - Fixed usage of abspath and path for RootDir objects on Windows. Previously
190       env.fs.Dir("T:").abspath would return "T:\T:" and now it correctly returns "T:".
192   From Ivan Kravets, PlatformIO
193     - New conditional C Scanner (`SCons.Scanner.C.CConditionalScanner()`)
194       which interprets C/C Preprocessor conditional syntax (#ifdef, #if, #else,
195       #elif, #define, etc.)
196     - Improvements for virtual C Pre-Processor:
197       * Handle UNSIGNED LONG and LONG numeric constants in DEC (keep support for HEX)
198       * Skip unrecognized directives, such as `#if( defined ...)`
199       * Ignore `#include DYNAMIC_INCLUDE` directive that depends on a dynamic
200         macro which is not located in a state TABLE.
201       * Cleanup CPP expressions before evaluating (strip comments, carriage returns)
203   From Iosif Kurazs:
204     - Added a new flag called "linedraw" for the command line argument  "--tree"
205       that instructs scons to use single line drawing characters to draw the dependency tree.
207   From Daniel Moody:
208     - Add no_progress (-Q) option as a set-able option. However, setting it in the
209       SConstruct/SConscript will still cause "scons: Reading SConscript files ..." to be
210       printed, since the option is not set when the build scripts first get read.
211     - Added check for SONAME in environment to setup symlinks correctly (Github Issue #3246)
212     - User callable's called during substition expansion could possibly throw a TypeError
213       exception, however SCons was using TypeError to detect if the callable had a different
214       signature than expected, and would silently fail to report user's exceptions. Fixed to
215       use signature module to detect function signature instead of TypeError. (Github Issue #3654)
216     - Added storage of SConstructs and SConscripts nodes into global set for checking
217       if a given node is a SConstruct/SConscript.
218       Added new node function SCons.Node.is_sconscript(self) (Github Issue #3625)
220   From Andrew Morrow:
221     - Fix Issue #3469 - Fixed improper reuse of temporary and compiled files by Configure when changing
222       the order and/or number of tests.  This is done by using the hash of the generated temporary files
223       content and (For the target files) the hash of the action.
224       So where previously files would be named:
225       - config_1.c, config_1.o, config_1
226       The will now be named (For example)
227       - conftest_68b375d16e812c43e6d72d6e93401e7c_0.c,
228         conftest_68b375d16e812c43e6d72d6e93401e7c_0_5713f09fc605f46b2ab2f7950455f187.o
229         or
230         conftest_68b375d16e812c43e6d72d6e93401e7c_0.o
231         conftest_68b375d16e812c43e6d72d6e93401e7c_0_5713f09fc605f46b2ab2f7950455f187 (for executable)
233   From Mathew Robinson:
234     - Improve performance of Subst by preventing unnecessary frame
235       allocations by no longer defining the *Subber classes inside of their
236       respective function calls.
237     - Improve performance of Subst in some cases by preventing
238       unnecessary calls to eval when a token is surrounded in braces
239       but is not a function call.
240     - Improve performance of subst by removing unnecessary recursion.
241     - Cleanup dangling symlinks before running builders (Issue #3516)
243   From Mats Wichmann:
244     - Remove deprecated SourceCode
245     - str.format syntax errors fixed
246     - a bunch of linter/checker syntax fixups
247     - Convert remaining uses of insecure/deprecated mktemp method.
248     - Clean up some duplications in manpage.  Clarify portion of manpage on Dir and File nodes.
249     - Reduce needless list conversions.
250     - Fixed regex in Python scanner.
251     - Accommodate VS 2017 Express - it's got a more liberal license then VS
252       Community, so some people prefer it (from 2019, no more Express)
253     - vswhere call should also now work even if programs aren't on the C: drive.
254     - Add an alternate warning message if cl.exe is not found and msvc config
255       cache is in use (SCONS_CACHE_MSVC_CONFIG was given) - config cache
256       may be out of date.
257     - Fixed bug where changing TEXTFILESUFFIX would cause Substfile() to rebuild. (Github Issue #3540)
258     - Script/Main.py now uses importlib instead of imp module.
259     - Drop some Python 2-isms.
260     - MSVC updates: pass on VSCMD_DEBUG and VSCMD_SKIP_SENDTELEMETRY to msvc
261       tool setup if set in environment. Add Powershell to default env
262       (used to call telemetry script).
263     - Microsoft Visual Studio - switch to using uuid module to generate GUIDs rather than hand rolled
264       method using md5 directly.
265       NOTE: This change affects the following builders' output. If your build depends on the output of these builders
266       you will likely see a rebuild.
267       * Package() (with PACKAGETYPE='msi')
268       * MSVSSolution()
269       * MSVSProject()
270     - Docbook builder provides a fallback if lxml fails to generate
271       a document with tostring().
272     - Fix description of ARCOMSTR constr. var. (issue 3636). Previously the text was a copy of ASCOMSTR which
273       has different function.
274     - Update xml files in SCons to reflect changed relative paths after
275       code restructuring (src/engine/SCons -> SCons)
276     - Preliminary Python 3.9 support - elimination of some warnings.
277     - Drop the with_metaclass jig which was designed to let class
278       definitions using a metaclass be written the same for Py2/Py3.
279     - Bump python_version_unsupported (and deprecated) to indicate 3.5
280       is lowest supported Python.
281     - ParseFlags should not modify the user's passed in dict in case it's
282       a compound data structure (e.g. values are lists) (issue #3665)
283     - In Py3 classes no longer need to be listed as deriving from object.
284     - Remove deprecated check for Task subclasses needing a needs_execute
285       method - this is now enforced via an abstract base class, so the
286       check and test is no longer needed.
287     - Close various logfiles (trace, cache, taskmastertrace, configure)
288       when done using atexit calls.
289     - Rebase forked copy of shutil.copytree to Python 3.7 stlib version.
290     - Significant rework of documentation: API docs are now generated
291       using Sphinx; manpage and user guide now use more "standard"
292       markup elements (which could facilitate later conversion to a
293       different doc format, should that choice be made); significant
294       rewordings in manpage.  Manpage Examples moved to an external
295       repository / website (scons-cookbook.readthedocs.io).
296     - Clean up test harness and tests' use of subdir, file_fixture and
297       dir_fixture.
298     - SubstitutionEnvironment and OverrideEnvironment now have keys()
299       and values() methods to better emulate a dict (already had items()).
300     - Rename internal Warning base class to SConsWarning to avoid any
301       possible confusion with Python's own Warning class.
304 RELEASE 3.1.2 - Mon, 17 Dec 2019 02:06:27 +0000
306   From Edoardo Bezzeccheri
307     - Added debug option "action_timestamps" which outputs to stdout the absolute start and end time for each target.
309   From Rob Boehne
310     - Fix suncxx tool (Oracle Studio compiler) when using Python 3.  Previously would throw an exception.
311       Resolved by properly handling tool version string output as unicode.
313   From Tim Gates
314     - Resolved a typo in engine.SCons.Tool
316   From Adam Gross:
317     - Resolved a race condition in multithreaded Windows builds with Python 2
318       in the case where a child process is spawned while a Python action has a
319       file open. Original author: Ryan Beasley.
320     - Added memoization support for calls to Environment.Value() in order to
321           improve performance of repeated calls.
324   From Jason Kenny
325     - Update Command() function to accept target_scanner, source_factory, and target_factory arguments.
326       This makes Command act more like a one-off builder.
328   From Ivan Kravets
329     - Added support for "-imacros" to ParseFlags
331   From Jacek Kuczera:
332     - Fix CheckFunc detection code for Visual 2019. Some functions
333       (e.g. memmove) were incorrectly recognized as not available.
335   From Jakub Kulik
336     - Fix stacktrace when using SCons with Python 3.5+ and SunOS/Solaris related tools.
338   From Philipp Maierhöfer:
339     - Avoid crash with UnicodeDecodeError on Python 3 when a Latex log file in
340       non-UTF-8 encoding (e.g. containing umlauts in Latin-1 encoding when
341       the fontenc package is included with \usepackage[T1]{fontenc}) is read.
343   From Mathew Robinson:
344     - Improved threading performance by ensuring NodeInfo is shared
345       across threads. Results in ~13% improvement for parallel builds
346       (-j# > 1) with many shared nodes.
347     - Improve performance of Entry.disambiguate() by making check for
348       most common case first, preventing unnecessary IO.
349     - Improved DAG walk performance by reducing unnecessary work when
350       there are no un-visited children.
352   From Mats Wichmann
353     - Replace instances of string find method with "in" checks where
354       the index from find() was not used.
355     - CmdStringHolder fix from issue #3428
356     - Turn previously deprecated debug options into failures:
357       --debug=tree, --debug=dtree, --debug=stree, --debug=nomemoizer.
358     - Experimental New Feature: Enable caching MSVC configuration
359       If SCONS_CACHE_MSVC_CONFIG shell environment variable is set,
360       SCons will cache the results of past calls to vcvarsall.bat to
361       a file; integrates with existing memoizing of such vars.
362       On vs2019 saves 5+ seconds per SCons invocation, which really
363       helps test suite runs.
364     - Remove deprecated SourceSignatures, TargetSignatures
365     - Remove deprecated Builder keywords: overrides and scanner
366     - Remove deprecated env.Copy
367     - Remove deprecated BuildDir plus SConscript keyword build_dir
368     - A number of documentation improvements.
371 RELEASE 3.1.1 - Mon, 07 Aug 2019 20:09:12 -0500
373   From William Deegan:
374     - Remove obsoleted references to DeciderNeedsNode which could cause crash when using --debug=explain
376   From Jason Kenny
377     - Add Fix and test for crash in 3.1.0 when using Decider('MD5-timestamp') and --debug=explain
379   From Ben Reed:
380     - Added -fmerge-all-constants to flags that get included in both CCFLAGS and LINKFLAGS.
382   From Mathew Robinson:
383     - Fix issue #3415 - Update remaining usages of EnvironmentError to SConsEnvironmentError
384       this patch fixes issues introduced in 3.1.0 where any of the
385       following would cause SCons to error and exit:
386         - CacheDir not write-able
387         - JSON encoding errors for CacheDir config
388         - JSON decoding errors for CacheDir config
391 RELEASE 3.1.0 - Mon, 20 Jul 2019 16:59:23 -0700
393   From Joseph Brill:
394     - Code to supply correct version-specifier argument to vswhere for
395       VS version selection.
397   From William Deegan:
398     - Enhanced --debug=explain output. Now the separate components of the dependency list are split up
399       as follows:
401       scons: rebuilding `file3' because:
402            the dependency order changed:
403            ->Sources
404            Old:xxx      New:zzz
405            Old:yyy      New:yyy
406            Old:zzz      New:xxx
407            ->Depends
408            ->Implicit
409            Old:/usr/bin/python  New:/usr/bin/python
410     - Fix Issue #3350 - SCons Exception EnvironmentError is conflicting with Python's EnvironmentError.
411     - Fix spurious rebuilds on second build for cases where builder has > 1 target and the source file
412       is generated. This was causing the > 1th target to not have it's implicit list cleared when the source
413       file was actually built, leaving an implicit list similar to follows for 2nd and higher target
414               ['/usr/bin/python', 'xxx', 'yyy', 'zzz']
415       This was getting persisted to SConsign and on rebuild it would be corrected to be similar to this
416               ['zzz', 'yyy', 'xxx', '/usr/bin/python']
417       Which would trigger a rebuild because the order changed.
418       The fix involved added logic to mark all shared targets as peers and then ensure they're implicit
419       list is all cleared together.
420     - Fix Issue #3349 - SCons Exception EnvironmentError is conflicting with Python's EnvironmentError.
421       Renamed to SConsEnvironmentError
422     - Fix Issue #3350 - mslink failing when too many objects.  This is resolved by adding TEMPFILEARGJOIN variable
423       which specifies what character to join all the argements output into the tempfile. The default remains a space
424       when mslink, msvc, or mslib tools are loaded they change the TEMPFILEARGJOIN to be a line separator (\r\n on win32)
425     - Fix performance degradation for MD5-timestamp decider.  NOTE: This changes the Decider() function arguments.
426       From:
427           def my_decider(dependency, target, prev_ni):
428       To:
429           def my_decider(dependency, target, prev_ni, repo_node):
430       Where repo_node is the repository (or other) node to use to check if the node is out of date instead of dependency.
432   From Peter Diener:
433     - Additional fix to issue #3135 - Also handle 'pure' and 'elemental' type bound procedures
434     - Fix issue #3135 - Handle Fortran submodules and type bound procedures
436   From Adam Gross:
437     - Upgraded and improved Visual Studio solution/project generation code using the MSVSProject builder.
438       - Added support for Visual Studio 2017 and 2019.
439       - Added support for the following per-variant parameters to the builder:
440         - cpppaths: Provides per-variant include paths.
441         - cppdefines: Provides per-variant preprocessor definitions.
443   From Michael Hartmann:
444     - Fix handling of Visual Studio Compilers to properly reject any unknown HOST_PLATFORM or TARGET_PLATFORM
446   From Bert Huijben:
447     - Added support for Visual Studio 2019 toolset.
449   From Mathew Robinson:
450     - Update cache debug output to include cache hit rate.
451     - No longer unintentionally hide exceptions in Action.py
452     - Allow builders and pseudo-builders to inherit from OverrideEnvironments
454   From Leonard de Ruijter:
455     - Add logic to derive correct version argument to vswhere
457   From Lukas Schrangl:
458     - Enable LaTeX scanner to find more than one include per line
460   From Mats Wichmann:
461     - scons-time takes more care closing files and uses safer mkdtemp to avoid
462       possible races on multi-job runs.
463     - Use importlib to dynamically load tool and platform modules instead of imp module
464     - sconsign: default to .sconsign.dblite if no filename is specified.
465       Be more informative in case of unsupported pickle protocol (py2 only).
466     - Fix issue #3336 - on Windows, paths were being added to PATH even if
467       tools were not found in those paths.
468     - More fixes for newer Java versions (since 9): handle new jdk directory
469       naming (jdk-X.Y instead of jdkX.Y) on Windows; handle two-digit major
470       version. Docstrings improved.
471     - Fixups for pylint: exception types, redefined functions,
472       globals, etc.  Some old code removed to resolve issues (hashlib is
473       always present on modern Pythons; no longer need the code for
474       2.5-and-earlier optparse). cmp is not a builtin function in Py3,
475       drop one (unused) use; replace one.  Fix another instance of
476       renaming to SConsEnvironmentError. Trailing whitespace.
477       Consistently use not is/in (if not x is y -> if x is not y).
478     - Add a PY3-only function for setting up the cachedir that should be less
479       prone to races. Add a hack to the PY2 version (from Issue #3351) to
480       be less prone to a race in the check for old-style cache.
481     - Fix coding error in docbook tool only exercised when using python lxml
482     - Recognize two additional GNU compiler header directory options in
483       ParseFlags: -iquote and -idirafter.
484     - Fix more re patterns that contain \ but not specified as raw strings
485       (affects scanners for D, LaTeX, swig)
488 RELEASE 3.0.5 - Mon, 26 Mar 2019 15:04:42 -0700
490   From William Deegan:
492     - Fix Issue #3283 - Handle using --config=force in combination with Decider('MD5-timestamp').
493       3.0.2 in fix for issue #2980 added that deciders can throw DeciderNeedsNode exception.
494       The Configure logic directly calls the decider when using --config=force but wasn't handling
495       that exception.  This would yield minimally configure tests using TryLink() not running and
496       leaving TypeError Nonetype exception in config.log
497     - Fix Issue #3303 - Handle --config=force overwriting the Environment passed into Configure()'s
498       Decider and not clearing it when the configure context is completed.
499     - Add default paths for yacc tool on windows to include cygwin, mingw, and chocolatey
500     - Fix issue #2799 - Fix mingw tool to respect SHCCCOMSTR, SHLINKCOMSTR and LDMODULECOMSTR
501     - Fix Issue #3329 - Add support for MS SDK V10.0A (which is commonly installed with VS2017)
502     - Fix Issue #3333 - Add support for finding vswhere under 32 bit windows installs.
504   From Maciej Kumorek:
505     - Update the MSVC tool to include the nologo flag by default in RCFLAGS
507 From Daniel Moody:
508     - Change the default for AppendENVPath to delete_existing=0, so path
509       order will not be changed, unless explicitly set (Issue #3276)
510     - Fixed bug which threw error when running SCons on windows system with no MSVC installed.
511     - Update link tool to convert target to node before accessing node member
512     - Update mingw tool to remove MSVC like nologo CCFLAG
513     - Add default paths for lex tool on windows to include cygwin, mingw, and chocolatey
514     - Add lex construction variable LEXUNISTD for turning off unix headers on windows
515     - Update lex tool to use win_flex on windows if available
517   From Mats Wichmann:
518     - Quiet open file ResourceWarnings on Python >= 3.6 caused by
519       not using a context manager around Popen.stdout
520     - Add the textfile tool to the default tool list
521     - Fix syntax on is/is not clauses: should not use with a literal
522     - Properly retrieve exit code when catching SystemExit
523     - scons-time now uses context managers around file opens
524     - Fix regex patterns that were not specified as raw strings
526   From Bernhard M. Wiedemann:
527     - Do not store build host+user name if reproducible builds are wanted
530 RELEASE 3.0.4 - Mon, 20 Jan 2019 22:49:27 +0000
532   From Mats Wichmann:
533     - Improve finding of Microsoft compiler: add a 'products' wildcard
534       in case 2017 Build Tools only is installed as it is considered a separate
535       product from the default Visual Studio
536     - Add TEMPFILESUFFIX to allow a customizable filename extension, as
537       described in the patch attached to issue #2431.
538     - scons.py and sconsign.py stopped working if script called as a symlink
539       to location in scons-local location.
540     - Fix issue running scons using a symlink to scons.py in an scons-local dir
541     - Doc updates around Default(), and the various *TARGETS variables.
543   From Daniel Moody:
544     - Improved support for VC14.1 and Visual Studio 2017, as well as arm and arm64 targets.
545       Issues #3268 & Issue #3222
546     - Initial support for ARM targets with Visual Studio 2017 - Issue #3182 (You must set TARGET_ARCH for this to work)
547     - Update TempFileMunge class to use PRINT_CMD_LINE_FUNC
549   From Tobias Herzog
550     - Enhance cpp scanner regex logic to detect if/elif expressions without whitespaces but
551       parenthesis like "#if(defined FOO)" or "#elif!(BAR)" correctly.
554 RELEASE 3.0.3 - Mon, 07 Jan 2019 20:05:22 -0400
555   NOTE: 3.0.2 release was dropped because there was a packaging bug. Please consider all 3.0.2
556         content.
558   From William Deegan:
559     - Fixes to packaging logic.  Ensuring the SCons.Tool.clangCommon module is added
560       to the release packages.
561     - Modify scons.bat script to check for scons python script without .py extension if no file
562       scons.py exists. This enables an all platform wheel to work.
564   From Mats Wichmann:
565     - Update doc examples to work with Python 3.5+:  map() now returns an iterable instead of a list.
568 RELEASE 3.0.2 - Mon, 31 Dec 2018 16:00:12 -0700
570   From Bernard Blackham:
571     - Fixed handling of side-effects in task master (fixes #3013).
573   From William Deegan:
574     - Remove long deprecated SCons.Options code and tests.  This removes BoolOption,EnumOption,
575       ListOption,PackageOption, and PathOption which have been replaced by *Variable() many years ago.
576     - Re-Enable parallel SCons (-j) when running via Pypy
577     - Move SCons test framework files to testing/framework and remove all references to QMtest.
578       QMTest has not been used by SCons for some time now.
579     - Updated logic for mingw and clang on win32 to search default tool install paths if not
580       found in normal SCons PATH.  If the user specifies PATH or tool specific paths they
581       will be used and the default paths below will be ignored.
582       - Default path for clang/clangxx : C:\Program Files\LLVM\bin
583       - Default path for mingw         : C:\MinGW\bin and/or  C:\mingw-w64\*\mingw64\bin
584       - Key program to locate mingw    : mingw32-make (as the gcc with mingw prefix has no fixed name)
585     - Fixed issue causing stack trace when python Action function contains a unicode string when being
586       run with Python 2.7
587     - Add alternate path to QT install for Centos in qt tool: /usr/lib64/qt-3.3/bin
588     - Fix Java tools to search reasonable default paths for Win32, Linux, macOS.  Add required paths
589       for swig and java native interface to JAVAINCLUDES.  You should add these to your CPPPATH if you need
590       to compile with them.  This handles spaces in paths in default Java paths on windows.
591     - Added more java paths to match install for Centos 7 of openjdk
592     - Fix new logic which populates JAVAINCLUDES to handle the case where javac is not found.
593     - Fix GH Issue #2580 - # in FRAMEWORKPATH doesn't get properly expanded. The # is left in the
594       command line.
595     - Fix issue #2980 with credit to Piotr Bartosik (and William Blevins).  This is an issue where using
596       TimeStamp-MD5 Decider and CacheDir can yield incorrect md5's being written into the .sconsign.
597       The difference between Piotr Bartosik's patch and the current code is that the more complicated
598       creation of file to csig map is only done when the count of children for the current node doesn't
599       match the previous count which is loaded from the sconsign.
600     - Fix issue # 3106 MSVC if using MSVC_BATCH and target dir had a space would fail due to quirk in
601       MSVC's handling of escaped targetdirs when batch compiling.
602     - Fix GH Issue #3141 unicode string in a TryAction() with python 2.7 crashes.
603     - Fix GH Issue #3212 - Use of Py3 and CacheDir + Configure's TryCompile (or likely and Python Value Nodes)
604       yielded trying to combine strings and bytes which threw exception.
605     - Fix GH Issue #3225 SCons.Util.Flatten() doesn't handle MappingView's produced by dictionary as return
606       values from dict().{items(), keys(), values()}.
607     - Fix GH Issue #3241 - Properly support versioned shared libraries for MacOS.  We've also introduced two
608       new env variables APPLELINK_CURRENT_VERSION and APPLELINK_COMPATIBILITY_VERSION which will specify
609       what is passed to the linkers -current_version and -compatibility_version flags.  If not specified
610       they will be derived from SHLIBVERSION as such:
611       - APPLELINK_CURRENT_VERSION = SHLIBVERSION
612       - APPLELINK_COMPATIBILITY_VERSION = all but the last digit in SHLIBVERSION with .0 appended.
613       Note that the values of the above will be validated. Valid format for either APPLELINK variable is
614       X[.Y[.Z]] where 0 <= X <= 65535, 0 <= Y <= 255, 0 <= Z <= 255.
615       The new variables have been added to the documents and should show up in user guide and manpage.
616     - Fix GH Issue #3136 no longer wrap io.{BufferedReader,BufferedWriter,BufferedRWPair,BufferedRandom,TextIOWrapper
617       with logic to set HANDLE_FLAG_INHERIT flag on the file handle.  Python 3.4+ automatically sets this according
618       to Python docs: https://docs.python.org/3/library/os.html#fd-inheritance
620   From Ray Donnelly:
621     - Fix the PATH created by scons.bat (and other .bat files) to provide a normalized
622       PATH.  Some pythons in the 3.6 series are no longer able to handle paths which
623       have ".." in them and end up crashing.  This is done by cd'ing into the directory
624       we want to add to the path and then using %CD% to give us the normalized directory
625       See bug filed under Python 3.6: https://bugs.python.org/issue32457.
626       Note: On Win32 PATH's which have not been normalized may cause undefined behavior
627       by other executables being run by SCons (or any subprocesses of executables being run by SCons).
628       Resolving this issue should eliminate that possibility going forward.
630   From Andrew Featherstone
631     - Removed unused --warn options from the man page and source code.
633   From Arda Fu
634     - Fix cpp scanner regex logic to treat ifndef for py3.5+. Previously it was
635       not properly differentiating between if, ifdef, and ifndef.
637   From Philipp Maierhöfer
638     - Added a __hash__ method to the class SCons.Subst.Literal. Required when substituting Literal
639       objects when SCons runs with Python 3.
640     - Added missing FORTRANMODDIRPREFIX to the gfortran tool.
642   From Matthew Marinets:
643     - Fixed an issue that caused the Java emitter to incorrectly parse arguments to constructors that
644       implemented a class.
646   From Fredrik Medley:
647     - Fix exception when printing of EnviromentError messages.
648       Specifically, this fixes error reporting of the race condition when
649       initializing the cache which error previously was hidden.
651   From Daniel Moody:
652     - Updated Jar builder to handle nodes and directories better
653     - Updated Jar builder to flatten source list which could contain embedded lists
654     - Removed some magic numbers from jar.py on behalf of Mats Wichmann (mats@linux.com)
655     - Set the pickling protocal back to highest which was causing issues
656       with variant dir tests. This will cause issues if reading sconsigns
657       pickled with the previous lower protocol.
658     - Updated swig to setup default paths for windows
659     - Updated gettext tools to setup default paths for windows with Cygwin/MinGW setups
660     - Add common location for default paths for cygwin and mingw in Platform modules
661     - Updated YACC tool to work on windows with Cygwin/MinGW setups
662     - Set the pickling protocal back to highest which was causing issues
663       with variant dir tests. This will cause issues if reading sconsigns
664       pickled with the previous lower protocol.
665     - Updated FS.py to handle removal of splitunc function from python 3.7
666     - Updated the vc.py to ignore MSVS versions where no compiler could be found
668   From Gary Oberbrunner:
669     - Fix bug when Installing multiple subdirs outside the source tree
670     - fix to_str to handle None without raising exception
671     - Fix -jN for python 3.7
673   From Jonathon Reinhart:
674     - Replace all instances of `int main()` in C code with `int main(void)`.
675       Specifically, this fixes the test cases use by Configure.CheckCC() which
676       would fail when using -Wstrict-prototypes.
678   From Zachary Tessler:
679     - Fix calculation of signatures for FunctionActions that contain list (or set,...)
680       comprehensions whose expressions involve constant literals. Those constants had
681       been ignored in signatures, so changing them did not cause targets to be rebuilt.
683   From Paweł Tomulik:
684     - In the testing framework, module TestCommon, fixed must_contain(),
685       must_not_contain(), and related methods of TestCommon class to work with
686       substrings located at zero offset.
687     - Added virtualenv support. A new function Virtualenv() determines whether
688       SCons runs in a virtualenv. The search PATH may also be extended to
689       prefer executables from the current virtualenv over the ones provided by
690       base environment. New option --enable-virtualenv provided to import some
691       virtualenv-related variables to SCons and extend every env['ENV']['PATH']
692       automatically. New option --ignore-virtualenv disables this. Two
693       environment variables, SCONS_ENABLE_VIRTUALENV and
694       SCONS_IGNORE_VIRTUALENV are supported for the same purpose.
696   From Richard West:
697     - Add SConstruct.py, Sconstruct.py, sconstruct.py to the search path for the root SConstruct file.
698       Allows easier debugging within Visual Studio
699     - Change setup.py to change the install directory (via  pip, or setup.py install) from scons-#.#.#
700       to scons (Yielding <pythondir>/lib/scons/SCons/ instead of <pythondir>/lib/scons/SCons-#.#.#/).
701       This changes SCons to better comply with normal Python installation practices.
703   From Mats Wichmann:
704     - Recognize new java 9, 10, 11 (as 9.0 and 10.0, 11.0)
705     - Updated manpage scons.xml to fix a nested list problem
706     - Updated doc terminiology: use prepend instead of append as appropriate
707     - XML validity fixes from SConstruct.py change
708     - Update wiki links to new github location
709     - Update bug links to new github location
710     - Make it easier for SConscript() call to fail on missing script.
711       It was possible to call SCons.Warnings.warningAsException
712       (not documented as a user API) to make all warnings fail. Now
713       SConscript can take an optional must_exist flag which if true fails
714       if the script does not exist.  Not failing on missing script is
715       now considered deprecated, and the first instance will print a
716       deprecation message.  It is now also possible to flip the scons
717       behavior (which still defaults to warn, not fail) by calling
718       SCons.Script.set_missing_sconscript_error, which is also not a
719       documented interface at the moment.
720     - Convert TestCmd.read to use with statement on open (quiets 17 py3 warnings)
721     - Quiet py3 warning in UtilTests.py
722     - Fix tests specifying octal constants for py3
723     - Fix must_contain tests for py3
724     - RPM package generation:
725        - Fix supplying a build architecture
726        - Disable auto debug package generation on certain rpmbuild versions
727        - Adjust some tests to only supply build-id file on certain rpmbuild versions
728        - Tests now use a file fixture for the repeated (trivial) main.c program.
729        - Document and comment cleanup.
730        - Added new Environment Value X_RPM_EXTRADEFS to supply custom settings
731          to the specfile without adding specific logic for each one to scons.
732     - The test for Python.h needed by swig tests is moved to get_python_platform
733       so it does not have to be repeated in every test; picks up one failure
734       which did not make the (previously needed) check. Windows version
735       of get_python_platform needed some rework in case running in virtualenv.
736     - If test opens os.devnull, register with atexit so file opens do not leak.
737     - Fix bugs in Win32 process spawn logic to handle OSError exception correctly.
738     - Use time.perf_counter instead of time.clock if it exists.
739       time.clock deprecated since py3.3, due to remove in 3.8. deprecation
740       warnings from py3.7 were failing a bunch of tests on Windows since they
741       mess up expected stderr.
742     - Prefer Py3's inspect.getfullargspec over deprecated inspect.getargspec.
743       Switched to "new" (standard in Py2.7) usage of receiving a namedtuple -
744       we were unpacking to a four-tuple, two of the items of which were unused;
745       getfullargspec returns a named tuple with seven elements so it is a
746       cleaner drop-in replacement using the namedtuple.
747     - Updated the test-framework.rst documentation.
748     - Remove obsoleted internal implementaiton of OrderedDict.
749     - Test for tar packaging fixups
750     - Stop using deprecated unittest asserts
751     - messages in strip-install-dir test now os-neutral
752     - Add xz compression format to packaging choices.
753     - Syntax cleanups - trailing blanks, use "is" to compare with None, etc.
754       Three uses of variables not defined are changed.
755     - Some script changes in trying to find scons engine
756     - Update (pep8) configure-cache script, add a --show option.
757     - Fix for a couple of "what if tool not found" exceptions in framework.
758     - Add Textfile/Substfile to default environment. (issue #3147)
759     - sconsign: a couple of python3 fixes; be more tolerant of implicit
760       entries which have no signatures; minor PEP8 changes.
761     - Fix a couple of type mistakes (list-> string, filter type -> list)
762     - Fix a couple of type mistakes in packaging tools: list-> string in msi,
763       filter type -> list in ipk
765   From Bernhard M. Wiedemann:
766     - Update SCons' internal scons build logic to allow overriding build date
767       with SOURCE_DATE_EPOCH for SCons itself.
768     - Change the datestamps in SCons' docs and embedded in code use ISO 8601 format and UTC
770   From Hao Wu
771     - Typo in customized decider example in user guide
772     - Replace usage of unittest.TestSuite with unittest.main() (fix #3113)
774 RELEASE 3.0.1 - Mon, 12 Nov 2017 15:31:33 -0700
776   From Daniel Moody:
777     - Jar can take multiple targets, and will make a duplicate jar from the sources for each target
778     - Added some warnings in case the Jar builder makes an implicit target
779     - Added Jar method and changed jar build to be more specific. Jar method will take in
780       directories or classes as source. Added more tests to JAR to ensure the jar was
781       packaged with the correct compiled class files.
782     - Added a No result test case to handle bug which seems unrelated to java in the
783       swig-dependencies.py test, more info here: http://scons.tigris.org/issues/show_bug.cgi?id=2907
784     - Added a travis script to test on ubuntu trusty now that the project is on github
785       so that Continuus Integration tests can be run automatically. It tests most case and considers
786       no result a pass as well. Improving this script can install more dependincies allowing for more
787       tests to be run.
789   From Daniel Moody:
790     - Updated the Jar Builder tool in Tool/__init__.py so that is doesn't force class files as
791       sources, allowing directories to be passed, which was causing test/Java/JAR.py to fail.
793   From William Deegan:
794     - Fix issue where code in utility routine to_String_for_subst() had code whose result was never
795       properly returned.
796       (Found by: James Rinkevich https://pairlist4.pair.net/pipermail/scons-users/2017-October/006358.html )
797     - Fixed Variables.GenerateHelpText() to now use the sort parameter. Due to incorrect 2to3 fixer changes
798       8 years ago it was being used as a boolean parameter.  Now you can specify sort to be a callable, or boolean
799       value. (True = normal sort). Manpage also updated.
800     - Fixed Tool loading logic from exploding sys.path with many site_scons/site_tools prepended on py3.
801     - Added additional output with time to process each SConscript file when using --debug=time.
803   From Thomas Berg:
804     - Fixed a regression in scons-3.0.0 where "from __future__ import print_function" was imposed
805       on the scope where SConstruct is executed, breaking existing builds using PY 2.7.
807   From William Deegan:
808     - Fix broken subst logic where a string with "$$(abc)" was being treated as "$(abc) and the
809       logic for removing the signature escapes was then failing because there was no closing "$)".
810       This was introduced by a pull request to allow recursive variable evaluations to yield a string
811       such as "$( $( some stuff $) $)".
813   From Zachary Tessler:
814     - Fix incorrect warning for repeated identical builder calls that use overrides
817 RELEASE 3.0.0 - Mon, 18 Sep 2017 08:32:04 -0700
819 NOTE: This is a major release.  You should expect that some targets may rebuild when upgrading.
820 Significant changes in some python action signatures. Also switching between PY 2.7 and PY 3.5, 3.6
821 will cause rebuilds.
824   From William Blevins:
825     - Updated D language scanner support to latest: 2.071.1. (PR #1924)
826       https://dlang.org/spec/module.html accessed 11 August 2016
827       - Enhancements:
828         - Added support for selective imports: "import A : B, C;" -> A
829         - Added support for renamed imports. "import B = A;" -> A
830         - Supports valid combinations: "import A, B, CCC = C, DDD = D : EEE = FFF;" -> A, B, C, D
831       - Notes:
832         - May find new (previously missed) Dlang dependencies.
833         - May cause rebuild after upgrade due to dependency changes.
834     - Updated Fortran-related tests to pass under GCC 5/6.
835     - Fixed SCons.Tool.Packaging.rpm.package source nondeterminism across builds.
837   From William Deegan:
838     - Removed deprecated tools CVS, Perforce, BitKeeper, RCS, SCCS, Subversion.
839     - Removed deprecated module SCons.Sig
840     - Added prioritized list of xsltproc tools to docbook. The order will now be as
841       follows: xsltproc, saxon, saxon-xslt, xalan  (with first being highest priority, first
842       tool found is used)
843     - Fixed MSVSProject example code (http://scons.tigris.org/issues/show_bug.cgi?id=2979)
844     - Defined MS SDK 10.0 and Changed VS 2015 to use SDK 10.0
845     - Changes to Action Function and Action Class signiture creation.  NOTE: This will cause rebuilds
846       for many builds when upgrading to SCons 3.0
847     - Fixed Bug #3027 - "Cross Compiling issue: cannot override ranlib"
848     - Fixed Bug #3020 - "Download link in user guide wrong. python setup.py install --version-lib broken"
849     - Fixed Bug #2486 - Added SetOption('silent',True) - Previously this value was not allowed to be set.
850     - Fixed Bug #3040 - Non-unicode character in CHANGES.txt
851     - Fixed Bug #2622 - AlwaysBuild + MSVC regression.
852     - Fixed Bug #3025 - (Credit to Florian : User flow86 on tigris) - Fix typo JAVACLASSSUFIX should have been
853                         JAVACLASSSUFFIX
856   From Ibrahim Esmat:
857     - Added the capability to build Windows Store Compatible libraries that can be used
858       with Universal Windows Platform (UWP) Apps and published to the store
860   From Daniel Holth:
861     - Add basic support for PyPy (by deleting __slots__ from Node with a
862       metaclass on PyPy); wrap most-used open() calls in 'with' statements to
863       avoid too many open files.
864     - Add __main__.py for `python -m SCons` in case it is on PYTHONPATH.
865     - Always use highest available pickle protocol for efficiency.
866     - Remove unused command line fallback for the zip tool.
868   From Gaurav Juvekar:
869     - Fix issue #2832: Expand construction variables in 'chdir' argument of builders. (PR #463)
870     - Fix issue #2910: Make --tree=all handle Unicode. (PR #427)
871     - Fix issue #2788: Fix typo in documentation example for sconf. (PR #388)
873   From Alexey Klimkin:
874     - Use memoization to optimize PATH evaluation across all dependencies per
875       node. (PR #345)
876     - Use set() where it is applicable (PR #344)
878   From M. Limber:
879     - Fixed msvs.py for Visual Studio Express editions that would report
880       "Error  : ValueError: invalid literal for float(): 10.0Exp".
882   From Rick Lupton:
883     - Update LaTeX scanner to understand \import and related commands
885   From Steve Robinson:
886     - Add support for Visual Studio 2017.  This support requires vswhere.exe a helper
887       tool installed with newer installs of 2017. SCons expects it to be located at
888       "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe"
889       It can be downloaded separately at
890       https://github.com/Microsoft/vswhere
892   From Tom Tanner:
893     - Allow nested $( ... $) sections
895   From Paweł Tomulik:
896     - Fixed the issue with LDMODULEVERSIONFLAGS reported by Tim Jenness
897       (https://pairlist4.pair.net/pipermail/scons-users/2016-May/004893.html).
898       An error was causing "-Wl,Bsymbolic" being added to linker's command-line
899       even when there was no specified value in LDMODULEVERSION and thus no
900       need for the flags to be specified.
901     - Added LoadableModule to the list of global functions (DefaultEnvironment
902       builders).
904   From Manish Vachharajani:
905     - Update debian rules, compat, and control to not use features
906       deprecated or obsolete in later versions of debhelpers
907     - Update python version to 2.7 in debian/control
909   From Richard Viney:
910     - Fixed PCHPDBFLAGS causing a deprecation warning on MSVC v8 and later when
911       using PCHs and PDBs together.
914   From Richard West:
915     - Added nested / namespace tool support
916     - Added a small fix to the python3 tool loader when loading a tool as a package
917     - Added additional documentation to the user manual on using toolpaths with the environment
918       This includes the use of sys.path to search for tools installed via pip or package managers
919     - Added support for a PyPackageDir function for use with the toolpath
921   From Russel Winder:
922     - Reordered the default D tools from "dmd, gdc, ldc" to "dmd, ldc, gdc".
923     - Add a ProgramAllAtOnce builder to the dmd, ldc, and gdc tools. (PR #448)
924     - Remove a file name exception for very old Fedora LDC installation.
925     - gdc can now handle building shared objects (tested for version 6.3.0).
926     - Remove establishing the SharedLibrary builder in the dmd, ldc, and gdc
927       tools, must now include the ar tool to get this builder as is required for
928       other compiler tools.
929     - Add clang and clang++ tools based on Paweł Tomulik's work.
931 RELEASE 2.5.1 - Mon, 03 Nov 2016 13:37:42 -0400
933   From William Deegan:
934     - Add scons-configure-cache.py to packaging. It was omitted
936   From Alexey Klimkin:
937     - Use memoization to optimize PATH evaluation across all dependencies per
938       node. (PR #345)
940 RELEASE 2.5.0 - Mon, 09 Apr 2016 11:27:42 -0700
942   From Dirk Baechle:
943     - Removed a lot of compatibility methods and workarounds
944       for Python versions < 2.7, in order to prepare the work
945       towards a combined 2.7/3.x version. (PR #284)
946       Also fixed the default arguments for the print_tree and
947       render_tree methods. (PR #284, too)
949   From William Blevins:
950     - Added support for cross-language dependency scanning;
951       SCons now respects scanner keys for implicit dependencies.
952       - Notes for SCons users with heterogeneous systems.
953         - May find new (previously missed) dependencies.
954         - May cause rebuild after upgrade due to dependency changes.
955         - May find new dependency errors (EG. cycles).
956           - Discovered in some of the SCons QT tests.
957     - Resolved missing cross-language dependencies for
958       SWIG bindings (fixes #2264).
959     - Corrected typo in User Guide for Scanner keyword. (PR #2959)
960     - Install builder interacts with scanner found in SCANNERS differently.
961       - Previous: Install builder recursively scanned implicit dependencies
962         for scanners from SCANNER, but not for built-in (default) scanners.
963       - Current: Install builder will not scan for implicit dependencies via
964         either scanner source. This optimizes some Install builder behavior
965         and brings orthogonality to Install builder scanning behavior.
967   From William Deegan:
968     - Add better messaging when two environments have
969       different actions for the same target (Bug #2024)
970     - Fix issue only with MSVC and Always build where targets
971       marked AlwaysBuild wouldn't make it into CHANGED_SOURCES
972       and thus yield an empty compile command line. (Bug #2622)
973     - Fix posix platform escaping logic to properly handle paths
974       with parens in them "()".  (Bug #2225)
976   From Jakub Pola:
977     - Intel Compiler 2016 (Linux/Mac) update for tool directories.
979   From Adarsh Sanjeev:
980     - Fix for issue #2494: Added string support for Chmod function.
982   From Tom Tanner:
983     - change cache to use 2 character subdirectories, rather than one character,
984       so as not to give huge directories for large caches, a situation which
985       causes issues for NFS.
986       For existing caches, you will need to run the scons-configure-cache.py
987       script to update them to the new format. You will get a warning every time
988       you build until you co this.
989     - Fix a bunch of unit tests on windows
991 RELEASE 2.4.1 - Mon, 07 Nov 2015 10:37:21 -0700
993   From Arfrever Frehtes Taifersar Arahesis:
994     - Fix for Bug # 2791 - Setup.py fails unnecessarily under Jython.
996   From Dirk Baechle:
997     - Fixed license of SVG titlepage files in the context of Debian
998       packaging, such that they allow for commercial use too (#2985).
1000   From William Blevins:
1001     - InstallVersionedLib now available in the DefaultEnvironment context.
1002     - Improves orthogonality of use cases between different Install functions.
1004   From Carnë Draug:
1005     - Added new configure check, CheckProg, to check for
1006       existence of a program.
1008   From Andrew Featherstone:
1009     - Fix for issue #2840 - Fix for two environments specifying same target with different
1010       actions not throwing hard error. Instead SCons was incorrectly issuing a warning
1011       and continuing.
1013   From Hiroaki Itoh :
1014     - Add support `Microsoft Visual C++ Compiler for Python 2.7'
1015       Compiler can be obtained at: https://www.microsoft.com/en-us/download/details.aspx?id=44266
1017   From Florian Miedniak:
1018     - Fixed tigris issue #3011: Glob() excludes didn't work when used with VariantDir(duplicate=0)
1020   From William Roberts:
1021     - Fix bug 2831 and allow Help() text to be appended to AddOption() help.
1023   From Paweł Tomulik:
1024     - Reimplemented versioning for shared libraries, with the following effects
1025     - Fixed tigris issues #3001, #3006.
1026     - Fixed several other issues not reported to tigris, including:
1027       issues with versioned libraries in subdirectories with tricky names,
1028       issues with versioned libraries and variant directories,
1029       issue with soname not being injected to library when using D linkers,
1030     - Switched to direct symlinks instead of daisy-chained ones -- soname and
1031       development symlinks point directly to the versioned shared library now),
1032       for rationale see:
1033       https://www.debian.org/doc/debian-policy/ch-sharedlibs.html
1034       https://fedoraproject.org/wiki/Packaging:Guidelines#Devel_Packages
1035       https://bitbucket.org/scons/scons/pull-requests/247/new-versioned-libraries-gnulink-cyglink/diff#comment-10063929
1036     - New construction variables to allow override default behavior: SONAME,
1037       SHLIBVERSIONFLAGS, _SHLIBVERSIONFLAGS, SHLIBNOVERSIONSYMLINKS,
1038       LDMODULEVERSION, LDMODULEVERSIONFLAGS, _LDMODULEVERSIONFLAGS,
1039       LDMODULENOVERSIONSYMLINKS.
1040     - Changed logic used to configure the versioning machinery from
1041       platform-centric to linker-oriented.
1042     - The SHLIBVERSION/LDMODULEVERSION variables are no longer validated by
1043       SCons (more freedom to users).
1044     - InstallVersionedLib() doesn't use SHLIBVERSION anymore.
1045     - Enchanced docs for the library versioning stuff.
1046     - New tests for versioned libraries.
1047     - Library versioning is currently implemented for the following linker
1048       tools: 'cyglink', 'gnulink', 'sunlink'.
1049     - Fix to swig tool - pick-up 'swig', 'swig3.0' and 'swig2.0' (in order).
1050     - Fix to swig tool - respect env['SWIG'] provided by user.
1054 RELEASE 2.4.0 - Mon, 21 Sep 2015 08:56:00 -0700
1056   From Dirk Baechle:
1057     - Switched several core classes to use "slots", to
1058       reduce the overall memory consumption in large
1059       projects (fixes #2180, #2178, #2198)
1060     - Memoizer counting uses decorators now, instead of
1061       the old metaclasses approach.
1063   From Andrew Featherstone
1064     - Fixed typo in SWIGPATH description
1066 RELEASE 2.3.6 - Mon, 31 Jul 2015 14:35:03 -0700
1068   From Rob Smith:
1069     - Added support for Visual Studio 2015
1071 RELEASE 2.3.5 - Mon, 17 Jun 2015 21:07:32 -0700
1073   From Stephen Pollard:
1074     - Documentation fixes for libraries.xml and
1075       builders-writing.xml (#2989 and #2990)
1077   From William Deegan:
1078     - Extended docs for InstallVersionedLib/SharedLibrary,
1079       and added SKIP_WIN_PACKAGES argument to build script
1080       bootstrap.py (PR #230, #3002).
1082   From William Blevins:
1083     - Fixed symlink support (PR #227, #2395).
1084     - Updated debug-count test case (PR #229).
1086   From Alexey Klimkin:
1087     - Fixed incomplete LIBS flattening and substitution in
1088       Program scanner(PR #205, #2954).
1090   From Dirk Baechle:
1091     - Added new method rentry_exists_on_disk to Node.FS (PR #193).
1093   From Russel Winder:
1094     - Fixed several D tests under the different OS.
1095     - Add support for f08 file extensions for Fortran 2008 code.
1097   From Anatoly Techtonik:
1098     - Show --config choices if no argument is specified (PR #202).
1099     - Fixed build crash when XML toolchain isn't installed, and
1100       activated compression for ZIP archives.
1102   From Alexandre Feblot:
1103     - Fix for VersionedSharedLibrary under 'sunos' platform.
1104     - Fixed dll link with precompiled headers on MSVC 2012
1105     - Added an 'exclude' parameter to Glob()
1107   From Laurent Marchelli:
1108     - Support for multiple cmdargs (one per variant) in VS project files.
1109     - Various improvements for TempFileMunge class.
1110     - Added an implementation for Visual Studio users files (PR #209).
1112   From Dan Pidcock:
1113     - Added support for the 'PlatformToolset' tag in VS project files (#2978).
1115   From James McCoy:
1116     - Added support for '-isystem' to ParseFlags.
1118 RELEASE 2.3.4 - Mon, 27 Sep 2014 12:50:35 -0400
1120   From Bernhard Walle and Dirk Baechle:
1121     - Fixed the interactive mode, in connection with
1122       Configure contexts (#2971).
1124   From Anatoly Techtonik:
1125     - Fix EnsureSConsVersion warning when running packaged version
1127   From Russel Winder:
1128     - Fix D tools for building shared libraries
1130 RELEASE 2.3.3 - Sun, 24 Aug 2014 21:08:33 -0400
1132   From Roland Stark:
1133     - Fixed false line length calculation in the TempFileMunge class (#2970).
1135   From Gary Oberbrunner:
1136     - Improve SWIG detection
1138   From Russel Winder:
1139     - Fix regression on Windows in D language update
1141   From Neal Becker and Stefan Zimmermann:
1142     - Python 3 port and compatibility
1144   From Anatoly Techtonik:
1145     - Do not fail on EnsureSConsVersion when running from checkout
1147   From Kendrick Boyd and Rob Managan:
1148     - Fixed the newglossary action to work with VariantDir (LaTeX).
1150   From Manuel Francisco Naranjo:
1151     - Added a default for the BUILDERS environment variable,
1152       to prevent not defined exception on a Clone().
1154   From Andrew Featherstone:
1155     - Added description of CheckTypeSize method (#1991).
1156     - Fixed handling of CPPDEFINE var in Append()
1157       for several list-dict combinations (#2900).
1159   From William Blevins:
1160     - Added test for Java derived-source dependency tree generation.
1161     - Added Copy Action symlink soft-copy support (#2395).
1162     - Various contributions to the documentation (UserGuide).
1164 RELEASE 2.3.2
1166   From Dirk Baechle:
1167     - Update XML doc editor configuration
1168     - Fix: Allow varlist to be specified as list of strings for Actions (#2754)
1170   From veon on bitbucket:
1171     - Fixed handling of nested ifs in CPP scanner PreProcessor class.
1173   From Shane Gannon:
1174     - Support for Visual Studio 2013 (12.0)
1176   From Michael Haubenwallner:
1177     - Respect user's CC/CXX values; don't always overwrite in generate()
1178     - Delegate linker Tool.exists() to CC/CXX Tool.exists().
1180   From Rob Managan:
1181     - Updated the TeX builder to support use of the -synctex=1
1182       option and the files it creates.
1183     - Updated the TeX builder to correctly clean auxiliary files when
1184       the biblatex package is used.
1186   From Gary Oberbrunner:
1187     - get default RPM architecture more robustly when building RPMs
1189   From Amir Szekely:
1190     - Fixed NoClean() for multi-target builders (#2353).
1192   From Paweł Tomulik:
1193     - Fix SConf tests that write output
1195   From Russel Winder:
1196     - Revamp of the D language support. Tools for DMD, GDC and LDC provided
1197       and integrated with the C and C++ linking. NOTE: This is only tested
1198       with D v2. Support for D v1 is now deprecated.
1200   From Anatoly Techtonik:
1201     - Several improvements for running scons.py from source:
1202       * engine files form source directory take priority over all other
1203         importable versions
1204       * message about scons.py running from source is removed to fix tests
1205         that were failing because of this extra line in the output
1206       * error message when SCons import fails now lists lookup paths
1207     - Remove support for QMTest harness from runtest.py
1208     - Remove RPM and m4 from default tools on Windows
1209     - BitKeeper, CVS, Perforce, RCS, SCCS are deprecated from default
1210       tools and will be removed in future SCons versions to speed up
1211       SCons initialization (it will still be possible to use these tools
1212       explicitly)
1214   From Sye van der Veen:
1215     - Support for Visual Studio 12.0Exp, and fixes for earlier MSVS
1216       versions.
1219 RELEASE 2.3.1
1221   From Andrew Featherstone:
1222     - Added support for EPUB output format to the DocBook tool.
1224   From Tom Tanner:
1225     - Stop leaking file handles to subprocesses by switching to using subprocess
1226       always.
1227     - Allow multiple options to be specified with --debug=a,b,c
1228     - Add support for a readonly cache (--cache-readonly)
1229     - Always print stats if requested
1230     - Generally try harder to print out a message on build errors
1231     - Adds a switch to warn on missing targets
1232     - Add Pseudo command to mark targets which should not exist after
1233       they are built.
1235   From Bogdan Tenea:
1236     - Check for 8.3 filenames on cygwin as well as win32 to make variant_dir work properly.
1238   From Alexandre Feblot:
1239     - Make sure SharedLibrary depends on all dependent libs (by depending on SHLINKCOM)
1241   From Stefan Sperling:
1242     - Fixed the setup of linker flags for a versioned SharedLibrary
1243       under OpenBSD (#2916).
1245   From Antonio Cavallo:
1246     - Improve error if Visual Studio bat file not found.
1248   From Manuel Francisco Naranjo:
1249     - Allow Subst.Literal string objects to be compared with each other,
1250       so they work better in AddUnique() and Remove().
1252   From David Rothenberger:
1253     - Added cyglink linker that uses Cygwin naming conventions for
1254       shared libraries and automatically generates import libraries.
1256   From Dirk Baechle:
1257     - Update bootstrap.py so it can be used from any dir, to run
1258       SCons from a source (non-installed) dir.
1259     - Count statistics of instances are now collected only when
1260       the --debug=count command-line option is used (#2922).
1261     - Added release_target_info() to File nodes, which helps to
1262       reduce memory consumption in clean builds and update runs
1263       of large projects.
1264     - Fixed the handling of long options in the command-line
1265       parsing (#2929).
1266     - Fixed misspelled variable in intelc.py (#2928).
1268   From Gary Oberbrunner:
1269     - Test harness: fail_test() can now print a message to help debugging.
1271   From Anatoly Techtonik:
1272     - Require rpmbuild when building SCons package.
1273     - Print full stack on certain errors, for debugging.
1274     - Improve documentation for Textfile builder.
1276   From William Deegan:
1277     - VS2012 & VS2010 Resolve initialization issues by adding path to reg.exe
1278       in shell used to run batch files.
1279     - MSVC Support fixed defaulting TARGET_ARCH to HOST_ARCH. It should be
1280       None if not explicitly set.
1281     - MSVC Fixed issue where if more than one Architectures compilers are
1282       detected, it would take the last one found, and not the first.
1284   From Philipp Kraus:
1285     - Added optional ZIPROOT to Zip tool.
1287   From Dirk Baechle:
1288     - Replaced old SGML-based documentation toolchain with a more modern
1289       approach, that also requires less external dependencies (programs and
1290       Python packages). Added a customized Docbook XSD for strict validation of
1291       all input XML files.
1293   From Luca Falavigna:
1294     - Fixed spelling errors in MAN pages (#2897).
1296   From Michael McDougall:
1297     - Fixed description of ignore_case for EnumVariable in the
1298       MAN page (#2774).
1300 RELEASE 2.3.0 - Mon, 02 Mar 2013 13:22:29 -0400
1302   From Anatoly Techtonik:
1303     - Added ability to run scripts/scons.py directly from source checkout
1304     - Hide deprecated --debug={dtree,stree,tree} from --help output
1305     - Error messages from option parser now include hints about valid choices
1306     - Cleaned up some Python 1.5 and pre-2.3 code, so don't expect SCons
1307       to run on anything less than Python 2.4 anymore
1308     - Several fixes for runtest.py:
1309       * exit with an error if no tests were found
1310       * removed --noqmtest option - this behavior is by default
1311       * replaced `-o FILE --xml` combination with `--xml FILE`
1312       * changed `-o, --output FILE` option to capture stdout/stderr output
1313         from runtest.py
1314     - Remove os_spawnv_fix.diff patch required to enable parallel builds
1315       support prior to Python 2.2
1317   From Juan Lang:
1318     - Fix WiX Tool to use .wixobj rather than .wxiobj for compiler output
1319     - Support building with WiX releases after 2.0
1321   From Alexey Klimkin:
1322     - Fix nested LIBPATH expansion by flattening sequences in subst_path.
1324   From eyan on Bitbucket:
1325     - Print target name with command execution time with --debug=time
1327   From Thomas Berg and Evgeny Podjachev:
1328     - Fix subprocess spawning on Windows.  Work around a Windows
1329       bug that can crash python occasionally when using -jN. (#2449)
1331   From Dirk Baechle:
1332     - Updated test framework to support dir and file fixtures and
1333       added ability to test external (out-of-tree) tools (#2862).
1334       See doc in QMTest/test-framework.rst.
1335     - Fixed several errors in the test suite (Java paths, MSVS version
1336       detection, Tool import), additionally
1337       * provided MinGW command-line support for the CXX, AS and
1338         Fortran tests,
1339       * refactored the detection of the gcc version and the according
1340         Fortran startup library,
1341       * provided a new module rpmutils.py, wrapping the RPM naming rules
1342         for target files and further hardware-dependent info (compatibility,
1343         compiler flags, ...),
1344       * added new test methods must_exist_one_of() and
1345         must_not_exist_any_of() and
1346       * removed Aegis support from runtest.py. (#2872)
1348   From Gary Oberbrunner:
1349     - Add -jN support to runtest.py to run tests in parallel
1350     - Add MSVC10 and MSVC11 support to get_output low-level bat script runner.
1351     - Fix MSVS solution generation for VS11, and fixed tests.
1353   From Rob Managan:
1354     - Updated the TeX builder to support the \newglossary command
1355       in LaTeX's glossaries package and the files it creates.
1356     - Improve support for new versions of biblatex in the TeX builder
1357       so biber is called automatically if biblatex requires it.
1358     - Add SHLIBVERSION as an option that tells SharedLibrary to build
1359       a versioned shared library and create the required symlinks.
1360       Add builder InstallVersionedLib to create the required symlinks
1361       installing a versioned shared library.
1363 RELEASE 2.2.0 - Mon, 05 Aug 2012 15:37:48 +0000
1365   From dubcanada on Bitbucket:
1366     - Fix 32-bit Visual Express C++ on 64-bit Windows (generate 32-bit code)
1368   From Paweł Tomulik:
1369     - Added gettext toolset
1370     - Fixed FindSourceFiles to find final sources (leaf nodes).
1372   From Greg Ward:
1373     - Allow Node objects in Java path (#2825)
1375   From Joshua Hughes:
1376     - Make Windows not redefine builtin file as un-inheritable (#2857)
1377     - Fix WINDOWS_INSERT_DEF on MinGW (Windows) (#2856)
1379   From smallbub on Bitbucket:
1380     - Fix LINKCOMSTR, SHLINKCOMSTR, and LDMODULECOMSTR on Windows (#2833).
1382   From Mortoray:
1383     - Make -s (silent mode) be silent about entering subdirs (#2976).
1384     - Fix cloning of builders when cloning environment (#2821).
1386   From Gary Oberbrunner:
1387     - Show valid Visual Studio architectures in error message
1388        when user passes invalid arch.
1390   From Alexey Petruchik:
1391     - Support for Microsoft Visual Studio 11 (both using it
1392       and generating MSVS11 solution files).
1394   From Alexey Klimkin:
1395     - Fixed the Taskmaster, curing spurious build failures in
1396       multi-threaded runs (#2720).
1398   From Dirk Baechle:
1399     - Improved documentation of command-line variables (#2809).
1400     - Fixed scons-doc.py to properly convert main XML files (#2812).
1402   From Rob Managan:
1403     - Updated the TeX builder to support LaTeX's multibib package.
1404     - Updated the TeX builder to support LaTeX's biblatex package.
1405     - Added support for using biber instead of bibtex by setting
1406       env['BIBTEX'] = 'biber'
1408   From Arve Knudsen:
1409     - Test for FORTRANPPFILESUFFIXES (#2129).
1412 RELEASE 2.1.0 - Mon, 09 Sep 2011 20:54:57 -0700
1414   From Anton Lazarev:
1415     - Fix Windows resource compiler scanner to accept DOS line endings.
1417   From Matthias:
1418     - Update MSVS documents to remove note indicating that only one
1419       project is currently supported per solution file.
1421   From Grzegorz Bizoń:
1422     - Fix long compile lines in batch mode by using TEMPFILE
1423     - Fix MSVC_BATCH=False (was treating it as true)
1425   From Justin Gullingsrud:
1426     - support -std=c++0x and related CXXFLAGS in pkgconfig (ParseFlags)
1428   From Vincent Beffara:
1429     - Support -dylib_file in pkgconfig (ParseFlags)
1431   From Gary Oberbrunner and Sohail Somani:
1432     - new construction variable WINDOWS_EMBED_MANIFEST to automatically
1433       embed manifests in Windows EXEs and DLLs.
1435   From Gary Oberbrunner:
1436     - Fix Visual Studio project generation when CPPPATH contains Dir nodes
1437     - Ensure Visual Studio project is regenerated when CPPPATH or CPPDEFINES change
1438     - Fix unicode error when using non-ASCII filenames with Copy or Install
1439     - Put RPATH in LINKCOM rather than LINKFLAGS so resetting
1440       LINKFLAGS doesn't kill RPATH
1441     - Fix precompiled headers on Windows when variant dir name has spaces.
1442     - Adding None to an Action no longer fails (just returns original action)
1443     - New --debug=prepare option to show each target as it's being
1444       prepared, whether or not anything needs to be done for it.
1445     - New debug option --debug=duplicate to print a line for each
1446       unlink/relink (or copy) of a variant file from its source file.
1447     - Improve error message for EnumVariables to show legal values.
1448     - Fix Intel compiler to sort versions >9 correctly (esp. on Linux)
1449     - Fix Install() when the source and target are directories and the
1450       target directory exists.
1452   From David Garcia Garzon:
1453     - Fix Delete to be able to delete broken symlinks and dir
1454       symlinks.
1456   From Imran Fanaswala and Robert Lehr:
1457     - Handle .output file generated by bison/yacc properly. Cleaning it
1458       when necessary.
1460   From Antoine Dechaume:
1461     - Handle SWIG file where there is whitespace after the module name
1462       properly. Previously the generated files would include
1463       the whitespace.
1465   From Dmitry R.:
1466     - Handle Environment in case __semi_deepcopy is None
1468   From Benoit Belley:
1470     - Much improved support for Windows UNC paths (\\SERVERNAME).
1472   From Jean-Baptiste Lab:
1474     - Fix problems with appending CPPDEFINES that contain
1475       dictionaries, and related issues with Parse/MergeFlags and
1476       CPPDEFINES.
1478   From Allen Weeks:
1480     - Fix for an issue with implicit-cache with multiple targets
1481       when dependencies are removed on disk.
1483   From Evgeny Podjachev and Alexey Petruchick:
1485     - Support generation of Microsoft Visual Studio 2008 (9.0)
1486       and 2010 (10.0) project and solution files.
1488   From Ken Deeter:
1490     - Fix a problem when FS Entries which are actually Dirs have builders.
1492   From Luca Falavigna:
1494     - Support Fortran 03
1496   From Gary Oberbrunner:
1498     - Print the path to the SCons package in scons --version
1500   From Jean-Fran�ois Colson:
1502     - Improve Microsoft Visual Studio Solution generation, and fix
1503       various errors in the generated solutions especially when using
1504       MSVS_SCC_PROVIDER, and when generating multiple projects.  The
1505       construction variable MSVS_SCC_PROJECT_BASE_PATH, which never
1506       worked properly, is removed.  Users can use the new variable
1507       MSVS_SCC_CONNECTION_ROOT instead if desired.
1509   From Anatoly Techtonik:
1511     - Use subprocess in bootstrap.py instead of os.execve to avoid
1512       losing output control on Windows (http://bugs.python.org/issue9148)
1514     - Revert patch for adding SCons to App Paths, because standard cmd
1515       shell doesn't search there. This is confusing, because `scons` can
1516       be executed from explorer, but fail to start from console.
1518     - Fix broken installation with easy_install on Windows (issue #2051)
1519       SCons traditionally installed in a way that allowed to run multiple
1520       versions side by side. This custom logic was incompatible with
1521       easy_install way of doing things.
1523     - Use epydoc module for generating API docs in HTML if command line
1524       utility is not found in PATH. Actual for Windows.
1526   From Alexander Goomenyuk:
1528     - Add .sx to assembly source scanner list so .sx files
1529       get their header file dependencies detected.
1531   From Arve Knudsen:
1533     - Set module metadata when loading site_scons/site_init.py
1534       so it is treated as a proper module; __doc__, __file__ and
1535       __name__ now refer to the site_init.py file.
1537   From Russel Winder:
1539     - Users Guide updates explaining that Tools can be packages as
1540       well as python modules.
1542   From Gary Oberbrunner:
1544     - New systemwide and per-user site_scons dirs.
1546   From Dirk Baechle:
1548     - XML fixes in User's Guide.
1549     - Fixed the detection of 'jar' and 'rmic' during
1550       the initialization of the respective Tools (#2730).
1551     - Improved docs for custom Decider functions and
1552       custom Scanner objects (#2711, #2713).
1553     - Corrected SWIG module names for generated *.i files (#2707).
1555   From Joe Zuntz:
1557     - Fixed a case-sensitivity problem with Fortran modules.
1559   From Bauke Conijn:
1561     - Added Users Guide example for auto-generated source code
1563   From Steven Knight:
1565     - Fix explicit dependencies (Depends()) on Nodes that don't have
1566       attached Builders.
1568     - Fix use of the global Alias() function with command actions.
1570   From Matt Hughes:
1572     - Fix the ability to append to default $*FLAGS values (which are
1573       implemented as CLVar instances) in a copied construction environment
1574       without affecting the original construction environment's value.
1576   From Rob Managan:
1578     - Updated the TeX command strings to include a /D on Windows in
1579       case the new directory is on a different drive letter.
1581     - Fixed the LaTeX scanner so dependencies are found in commands that
1582       are broken across lines with a comment or have embedded spaces.
1584     - The TeX builders should now work with tex files that are generated
1585       by another program. Thanks to Hans-Martin von Gaudecker for
1586       isolating the cause of this bug.
1588     - Added support for INDEXSTYLE environment variable so makeindex can
1589       find style files.
1591     - Added support for the bibunits package so we call bibtex on all
1592       the bu*.aux files.
1594     - Add support of finding path information on OSX for TeX applications
1595       MacPorts and Fink paths need to be added by the user
1597   From Russel Winder:
1599     - Add support for DMD version 2 (the phobos2 library).
1601   From William Deegan:
1603     - Add initial support for VS/VC 2010 (express and non-express versions)
1604     - Remove warning for not finding MS VC/VS install.
1605       "scons: warning: No version of Visual Studio compiler found
1606         - C/C++ compilers most likely not set correctly"
1607     - Add support for Linux 3.0
1610 RELEASE 2.0.1 - Mon, 15 Aug 2010 15:46:32 -0700
1612   From Dirk Baechle:
1614     - Fix XML in documentation.
1616   From Joe Zuntz:
1618     - Fixed a case-sensitivity problem with Fortran modules.
1620   From Bauke Conijn:
1622     - Added Users Guide example for auto-generated source code
1624   From Steven Knight:
1626     - Fix explicit dependencies (Depends()) on Nodes that don't have
1627       attached Builders.
1629   From Matt Hughes:
1631     - Fix the ability to append to default $*FLAGS values (which are
1632       implemented as CLVar instances) in a copied construction environment
1633       without affecting the original construction environment's value.
1635   From Rob Managan:
1637     - Updated the TeX command strings to include a /D on Windows in
1638       case the new directory is on a different drive letter.
1640     - Fixed the LaTeX scanner so dependencies are found in commands that
1641       are broken across lines with a comment or have embedded spaces.
1644 RELEASE 2.0.0.final.0 - Mon, 14 Jun 2010 22:01:37 -0700
1646   From Dirk Baechle:
1648     - Fix XML in documentation.
1650   From Steven Knight:
1652     - Provide forward compatibility for the 'profile' module.
1654     - Provide forward compatibility for the 'pickle' module.
1656     - Provide forward compatibility for the 'io' module.
1658     - Provide forward compatibility for the 'queue' module.
1660     - Provide forward compatibility for the 'collections' module.
1662     - Provide forward compatibility for the 'builtins' module.
1664     - Provide forward compatibility for 'sys.intern()'.
1666     - Convert to os.walk() from of os.path.walk().
1668     - Remove compatibility logic no longer needed.
1670     - Add a '-3' option to runtest to print 3.x incompatibility warnings.
1672     - Convert old-style classes into new-style classes.
1674     - Fix "Ignoring corrupt sconsign entry" warnings when building
1675       in a tree with a pre-2.0 .sconsign file.
1677     - Fix propagation from environment of VS*COMNTOOLS to resolve issues
1678       initializing MSVC/MSVS/SDK issues.
1680     - Handle detecting Visual C++ on Python versions with upper-case
1681       platform architectures like 'AMD64'.
1683   From W. Trevor King:
1685     - Revisions to README.
1687   From Greg Noel:
1689     - Apply numerous Python fixers to update code to more modern idioms.
1690       Find where fixers should be applied to code in test strings and
1691       apply the fixers there, too.
1693     - Write a fixer to convert string functions to string methods.
1695     - Modify the 'dict' fixer to be less conservative.
1697     - Modify the 'apply' fixer to handle more cases.
1699     - Create a modified 'types' fixer that converts types to 2.x
1700       equivalents rather than 3.x equivalents.
1702     - Write a 'division' fixer to highlight uses of the old-style
1703       division operator.  Correct usage where needed.
1705     - Add forward compatibility for the new 'memoryview' function
1706       (which replaces the 'buffer' function).
1708     - Add forward compatibility for the 'winreg' module.
1710     - Remove no-longer-needed 'platform' module.
1712     - Run tests with the '-3' option to Python 2.6 and clear up
1713       various reported incompatibilities.
1715     - Comb out code paths specialized to Pythons older than 2.4.
1717     - Update deprecation warnings; most now become mandatory.
1719     - Start deprecation cycle for BuildDir() and build_dir.
1721     - Start deprecation cycle for SourceCode() and related factories
1723     - Fixed a problem with is_Dict() not identifying some objects derived
1724       from UserDict.
1726   From Jim Randall:
1728     - Document the AllowSubstExceptions() function in the User's Guide.
1730   From William Deegan:
1732     - Migrate MSVC/MSVS/SDK improvements from 1.3 branch.
1735 RELEASE 1.3.0 - Tue, 23 Mar 2010 21:44:19 -0400
1737   From Steven Knight:
1739     - Update man page and documentation.
1741   From William Deegan (plus minor patch from Gary Oberbrunner):
1743     - Support Visual Studio 8.0 Express
1745 RELEASE 1.2.0.d20100306 - Sat, 06 Mar 2010 16:18:33 -0800
1747   From Luca Falavigna:
1749     - Fix typos in the man page.
1751   From Gottfried Ganssauge:
1753     - Support execution when SCons is installed via easy_install.
1755   From Steven Knight:
1757     - Make the messages for Configure checks of compilers consistent.
1759     - Issue an error message if a BUILDERS entry is not a Builder
1760       object or a callable wrapper.
1762   From Rob Managan:
1764     - Update tex builder to handle the case where a \input{foo}
1765       command tries to work with a directory named foo instead of the
1766       file foo.tex. The builder now ignores a directory and continues
1767       searching to find the correct file. Thanks to Lennart Sauerbeck
1768       for the test case and initial patch
1770       Also allow the \include of files in subdirectories when variantDir
1771       is used with duplicate=0. Previously latex would crash since
1772       the directory in which the .aux file is written was not created.
1773       Thanks to Stefan Hepp for finding this and part of the solution.
1775   From James Teh:
1776     - Patches to fix some issues using MS SDK V7.0
1778   From William Deegan:
1779     - Lots of testing and minor patches to handle mixed MS VC and SDK
1780       installations, as well as having only the SDK installed.
1783 RELEASE 1.2.0.d20100117 - Sun, 17 Jan 2010 14:26:59 -0800
1785   From Jim Randall:
1786     - Fixed temp filename race condition on Windows with long cmd lines.
1788   From David Cournapeau:
1789     - Fixed tryRun when sconf directory is in a variant dir.
1790     - Do not add -fPIC for ifort tool on non-posix platforms (darwin and
1791       windows).
1792     - Fix bug 2294 (spurious CheckCC failures).
1793     - Fix SCons bootstrap process on windows 64 (wrong wininst name)
1795   From William Deegan:
1796     - Final merge from vs_revamp branch to main
1798     - Added definition and usage of HOST_OS, HOST_ARCH, TARGET_OS,
1799       TARGET_ARCH, currently only defined/used by Visual Studio
1800       Compilers. This will be rolled out to other platforms/tools
1801       in the future.
1803     - Add check for python >= 3.0.0 and exit gracefully.
1804       For 1.3 python >= 1.5.2 and < 3.0.0 are supported
1806     - Fix bug 1944 - Handle non-existent .i file in swig emitter, previously
1807       it would crash with an IOError exception. Now it will try to make an
1808       educated guess on the module name based on the filename.
1810   From Lukas Erlinghagen:
1812     - Have AddOption() remove variables from the list of
1813       seen-but-unknown variables (which are reported later).
1815     - An option name and aliases can now be specified as a tuple.
1817   From Hartmut Goebel:
1819     - Textfile builder.
1821   From Jared Grubb:
1823     - use "is/is not" in comparisons with None instead of "==" or "!=".
1825   From Jim Hunziker:
1827     - Avoid adding -gphobos to a command line multiple times
1828       when initializing use of the DMD compiler.
1830   From Jason Kenney:
1832     - Sugguested HOST/TARGET OS/ARCH separation.
1834   From Steven Knight:
1836     - Fix the -n option when used with VariantDir(duplicate=1)
1837       and the variant directory doesn't already exist.
1839     - Fix scanning of Unicode files for both UTF-16 endian flavors.
1841     - Fix a TypeError on #include of file names with Unicode characters.
1843     - Fix an exception if a null command-line argument is passed in.
1845     - Evaluate Requires() prerequisites before a Node's direct children
1846       (sources and dependencies).
1848   From Greg Noel:
1850     - Remove redundant __metaclass__ initializations in Environment.py.
1852     - Correct the documentation of text returned by sconf.Result().
1854     - Document that filenames with '.' as the first character are
1855       ignored by Glob() by default (matching UNIX glob semantics).
1857     - Fix SWIG testing infrastructure to work on Mac OS X.
1859     - Restructure a test that occasionally hung so that the test would
1860       detect when it was stuck and fail instead.
1862     - Substfile builder.
1864   From Gary Oberbrunner:
1866     - When reporting a target that SCons doesn't know how to make,
1867       specify whether it's a File, Dir, etc.
1869   From Ben Webb:
1871     - Fix use of $SWIGOUTDIR when generating Python wrappers.
1873     - Add $SWIGDIRECTORSUFFIX and $SWIGVERSION construction variables.
1875   From Rob Managan:
1877     - Add -recorder flag to Latex commands and updated internals to
1878       use the output to find files TeX creates. This allows the MiKTeX
1879       installations to find the created files
1881     - Notify user of Latex errors that would get buried in the
1882       Latex output
1884     - Remove LATEXSUFFIXES from environments that don't initialize Tex.
1886     - Add support for the glossaries package for glossaries and acronyms
1888     - Fix problem that pdftex, latex, and pdflatex tools by themselves did
1889       not create the actions for bibtex, makeindex,... by creating them
1890       and other environment settings in one routine called by all four
1891       tex tools.
1893     - Fix problem with filenames of sideeffects when the user changes
1894       the name of the output file from the latex default
1896     - Add scanning of files included in Latex by means of \lstinputlisting{}
1897       Patch from Stefan Hepp.
1899     - Change command line for epstopdf to use --outfile= instead of -o
1900       since this works on all platforms.
1901       Patch from Stefan Hepp.
1903     - Change scanner to properly search for included file from the
1904       directory of the main file instead of the file it is included from.
1905       Also update the emitter to add the .aux file associated with
1906       \include{filename} commands. This makes sure the required directories
1907       if any are created for variantdir cases.
1908       Half of the patch from Stefan Hepp.
1910 RELEASE 1.2.0.d20090223 - Mon, 23 Feb 2009 08:41:06 -0800
1912   From Stanislav Baranov:
1914     - Make suffix-matching for scanners case-insensitive on Windows.
1916   From David Cournapeau:
1918     - Change the way SCons finds versions of Visual C/C++ and Visual
1919       Studio to find and use the Microsoft v*vars.bat files.
1921   From Robert P. J. Day:
1923     - User's Guide updates.
1925   From Dan Eaton:
1927     - Fix generation of Visual Studio 8 project files on x64 platforms.
1929   From Allan Erskine:
1931     - Set IncludeSearchPath and PreprocessorDefinitions in generated
1932       Visual Studio 8 project files, to help IntelliSense work.
1934   From Mateusz Gruca:
1936     - Fix deletion of broken symlinks by the --clean option.
1938   From Steven Knight:
1940     - Fix the error message when use of a non-existent drive on Windows
1941       is detected.
1943     - Add sources for files whose targets don't exist in $CHANGED_SOURCES.
1945     - Detect implicit dependencies on commands even when the command is
1946       quoted.
1948     - Fix interaction of $CHANGED_SOURCES with the --config=force option.
1950     - Fix finding #include files when the string contains escaped
1951       backslashes like "C:\\some\\include.h".
1953     - Pass $CCFLAGS to Visual C/C++ precompiled header compilation.
1955     - Remove unnecessary nested $( $) around $_LIBDIRFLAGS on link lines
1956       for the Microsoft linker, the OS/2 ilink linker and the Phar Lap
1957       linkloc linker.
1959     - Spell the Windows environment variables consistently "SystemDrive"
1960       and "SystemRoot" instead of "SYSTEMDRIVE" and "SYSTEMROOT".
1964 RELEASE 1.2.0.d20090113 - Tue, 13 Jan 2009 02:50:30 -0800
1966   From Stanislav Baranov, Ted Johnson and Steven Knight:
1968     - Add support for batch compilation of Visual Studio C/C++ source
1969       files, controlled by a new $MSVC_BATCH construction variable.
1971   From Steven Knight:
1973     - Print the message, "scons: Build interrupted." on error output,
1974       not standard output.
1976     - Add a --warn=future-deprecated option for advance warnings about
1977       deprecated features that still have warnings hidden by default.
1979     - Fix use of $SOURCE and $SOURCES attributes when there are no
1980       sources specified in the Builder call.
1982     - Add support for new $CHANGED_SOURCES, $CHANGED_TARGETS,
1983       $UNCHANGED_SOURCES and $UNCHANGED_TARGETS variables.
1985     - Add general support for batch builds through new batch_key= and
1986       targets= keywords to Action object creation.
1988   From Arve Knudsen:
1990     - Make linker tools differentiate properly between SharedLibrary
1991       and LoadableModule.
1993     - Document TestCommon.shobj_prefix variable.
1995     - Support $SWIGOUTDIR values with spaces.
1997   From Rob Managan:
1999     - Don't automatically try to build .pdf graphics files for
2000       .eps files in \includegraphics{} calls in TeX/LaTeX files
2001       when building with the PDF builder (and thus using pdflatex).
2003   From Gary Oberbrunner:
2005     - Allow AppendENVPath() and PrependENVPath() to interpret '#'
2006       for paths relative to the top-level SConstruct directory.
2008     - Use the Borland ilink -e option to specify the output file name.
2010     - Document that the msvc Tool module uses $PCH, $PCHSTOP and $PDB.
2012     - Allow WINDOWS_INSERT_DEF=0 to disable --output-def when linking
2013       under MinGW.
2015   From Zia Sobhani:
2017     - Fix typos in the User's Guide.
2019   From Greg Spencer:
2021     - Support implicit dependency scanning of files encoded in utf-8
2022       and utf-16.
2024   From Roberto de Vecchi:
2026     - Remove $CCFLAGS from the the default definitions of $CXXFLAGS for
2027       Visual C/C++ and MIPSpro C++ on SGI so, they match other tools
2028       and avoid flag duplication on C++ command lines.
2030   From Ben Webb:
2032     - Handle quoted module names in SWIG source files.
2034     - Emit *_wrap.h when SWIG generates header file for directors
2036   From Matthew Wesley:
2038     - Copy file attributes so we identify, and can link a shared library
2039       from, shared object files in a Repository.
2043 RELEASE 1.2.0 - Sat, 20 Dec 2008 22:47:29 -0800
2045   From Steven Knight:
2047     - Don't fail if can't import a _subprocess module on Windows.
2049     - Add warnings for use of the deprecated Options object.
2053 RELEASE 1.1.0.d20081207 - Sun, 07 Dec 2008 19:17:23 -0800
2055   From Benoit Belley:
2057     - Improve the robustness of GetBuildFailures() by refactoring
2058       SCons exception handling (especially BuildError exceptions).
2060     - Have the --taskmastertrace= option print information about
2061       individual Task methods, not just the Taskmaster control flow.
2063     - Eliminate some spurious dependency cycles by being more aggressive
2064       about pruning pending children from the Taskmaster walk.
2066     - Suppress mistaken reports of a dependency cycle when a child
2067       left on the pending list is a single Node in EXECUTED state.
2069   From David Cournapeau:
2071     - Fix $FORTRANMODDIRPREFIX for the ifort (Intel Fortran) tool.
2073   From Brad Fitzpatrick:
2075     - Don't pre-generate an exception message (which will likely be
2076       ignored anyway) when an EntryProxy re-raises an AttributeError.
2078   From Jared Grubb:
2080     - Clean up coding style and white space in Node/FS.py.
2082     - Fix a typo in the documentation for $_CPPDEFFLAGS.
2084     - Issue 2401: Fix usage of comparisons with None.
2086   From Ludwig H�hne:
2088     - Handle Java inner classes declared within a method.
2090   From Steven Knight:
2092     - Fix label placement by the "scons-time.py func" subcommand
2093       when a profile value was close to (or equal to) 0.0.
2095     - Fix env.Append() and env.Prepend()'s ability to add a string to
2096       list-like variables like $CCFLAGS under Python 2.6.
2098     - Other Python2.6 portability:  don't use "as" (a Python 2.6 keyword).
2099       Don't use the deprecated Exception.message attribute.
2101     - Support using the -f option to search for a different top-level
2102       file name when walking up with the -D, -U or -u options.
2104     - Fix use of VariantDir when the -n option is used and doesn't,
2105       therefore, actually create the variant directory.
2107     - Fix a stack trace from the --debug=includes option when passed a
2108       static or shared library as an argument.
2110     - Speed up the internal find_file() function (used for searching
2111       CPPPATH, LIBPATH, etc.).
2113     - Add support for using the Python "in" keyword on construction
2114       environments (for example, if "CPPPATH" in env: ...).
2116     - Fix use of Glob() when a repository or source directory contains
2117       an in-memory Node without a corresponding on-disk file or directory.
2119     - Add a warning about future reservation of $CHANGED_SOURCES,
2120       $CHANGED_TARGETS, $UNCHANGED_SOURCES and $UNCHANGED_TARGETS.
2122     - Enable by default the existing warnings about setting the resource
2123       $SOURCE, $SOURCES, $TARGET and $TARGETS variable.
2125   From Rob Managan:
2127     - Scan for TeX files in the paths specified in the $TEXINPUTS
2128       construction variable and the $TEXINPUTS environment variable.
2130     - Configure the PDF() and PostScript() Builders as single_source so
2131       they know each source file generates a separate target file.
2133     - Add $EPSTOPDF, $EPSTOPDFFLAGS and $EPSTOPDFCOM
2135     - Add .tex as a valid extension for the PDF() builder.
2137     - Add regular expressions to find \input, \include and
2138       \includegraphics.
2140     - Support generating a .pdf file from a .eps source.
2142     - Recursive scan included input TeX files.
2144     - Handle requiring searched-for TeX input graphics files to have
2145       extensions (to avoid trying to build a .eps from itself, e.g.).
2147   From Greg Noel:
2149     - Make the Action() function handle positional parameters consistently.
2151     - Clarify use of Configure.CheckType().
2153     - Make the File.{Dir,Entry,File}() methods create their entries
2154       relative to the calling File's directory, not the SConscript
2155       directory.
2157     - Use the Python os.devnull variable to discard error output when
2158       looking for the $CC or $CXX version.
2160     - Mention LoadableModule() in the SharedLibrary() documentation.
2162   From Gary Oberbrunner:
2164     - Update the User's Guide to clarify use of the site_scons/
2165       directory and the site_init.py module.
2167     - Make env.AppendUnique() and env.PrependUnique remove duplicates
2168       within a passed-in list being added, too.
2170   From Randall Spangler:
2172     - Fix Glob() so an on-disk file or directory beginning with '#'
2173       doesn't throw an exception.
2177 RELEASE 1.1.0 - Thu, 09 Oct 2008 08:33:47 -0700
2179   From Chris AtLee
2181     - Use the specified environment when checking for the GCC compiler
2182       version.
2184   From Ian P. Cardenas:
2186     - Fix Glob() polluting LIBPATH by returning copy of list
2188   From David Cournapeau:
2190     - Add CheckCC, CheckCXX, CheckSHCC and CheckSHCXX tests to
2191       configuration contexts.
2193     - Have the --profile= argument use the much faster cProfile module
2194       (if it's available in the running Python version).
2196     - Reorder MSVC compilation arguments so the /Fo is first.
2198   From Bill Deegan:
2200     - Add scanning Windows resource (.rc) files for implicit dependencies.
2202   From John Gozde:
2204     - When scanning for a #include file, don't use a directory that
2205       has the same name as the file.
2207   From Ralf W. Grosse-Kunstleve
2209     - Suppress error output when checking for the GCC compiler version.
2211   From Jared Grubb:
2213     - Fix VariantDir duplication of #included files in subdirectories.
2215   From Ludwig H�hne:
2217     - Reduce memory usage when a directory is used as a dependency of
2218       another Node (such as an Alias) by returning a concatenation
2219       of the children's signatures + names, not the children's contents,
2220       as the directory contents.
2222     - Raise AttributeError, not KeyError, when a Builder can't be found.
2224     - Invalidate cached Node information (such as the contenst returned
2225       by the get_contents() method) when calling actions with Execute().
2227     - Avoid object reference cycles from frame objects.
2229     - Reduce memory usage from Null Executor objects.
2231     - Compute MD5 checksums of large files without reading the entire
2232       file contents into memory.  Add a new --md5-chunksize option to
2233       control the size of each chunk read into memory.
2235   From Steven Knight:
2237     - Fix the ability of the add_src_builder() method to add a new
2238       source builder to any other builder.
2240     - Avoid an infinite loop on non-Windows systems trying to find the
2241       SCons library directory if the Python library directory does not
2242       begin with the string "python".
2244     - Search for the SCons library directory in "scons-local" (with
2245       no version number) after "scons-local-{VERSION}".
2247   From Rob Managan:
2249     - Fix the user's ability to interrupt the TeX build chain.
2251     - Fix the TeX builder's allowing the user to specify the target name,
2252       instead of always using its default output name based on the source.
2254     - Iterate building TeX output files until all warning are gone
2255       and the auxiliary files stop changing, or until we reach the
2256       (configurable) maximum number of retries.
2258     - Add TeX scanner support for:  glossaries, nomenclatures, lists of
2259       figures, lists of tables, hyperref and beamer.
2261     - Use the $BIBINPUTS, $BSTINPUTS, $TEXINPUTS and $TEXPICTS construction
2262       variables as search paths for the relevant types of input file.
2264     - Fix building TeX with VariantDir(duplicate=0) in effect.
2266     - Fix the LaTeX scanner to search for graphics on the TEXINPUTS path.
2268     - Have the PDFLaTeX scanner search for .gif files as well.
2270   From Greg Noel:
2272     - Fix typos and format bugs in the man page.
2274     - Add a first draft of a wrapper module for Python's subprocess
2275       module.
2277     - Refactor use of the SCons.compat module so other modules don't
2278       have to import it individually.
2280     - Add .sx as a suffix for assembly language files that use the
2281       C preprocessor.
2283   From Gary Oberbrunner:
2285     - Make Glob() sort the returned list of Files or Nodes
2286       to prevent spurious rebuilds.
2288     - Add a delete_existing keyword argument to the AppendENVPath()
2289       and PrependENVPath() Environment methods.
2291     - Add ability to use "$SOURCE" when specifying a target to a builder
2293   From Damyan Pepper:
2295     - Add a test case to verify that SConsignFile() files can be
2296       created in previously non-existent subdirectories.
2298   From Jim Randall:
2300     - Make the subdirectory in which the SConsignFile() file will
2301       live, if the subdirectory doesn't already exist.
2303   From Ali Tofigh:
2305     - Add a test to verify duplication of files in VariantDir subdirectories.
2309 RELEASE 1.0.1 - Sat, 06 Sep 2008 07:29:34 -0700
2311   From Greg Noel:
2313     - Add a FindFile() section to the User's Guide.
2315     - Fix the FindFile() documentation in the man page.
2317     - Fix formatting errors in the Package() description in the man page.
2319     - Escape parentheses that appear within variable names when spawning
2320       command lines using os.system().
2324 RELEASE 1.0.0 - XXX
2326   From Jared Grubb:
2328     - Clear the Node state when turning a generic Entry into a Dir.
2330   From Ludwig H�hne:
2332     - Fix sporadic output-order failures in test/GetBuildFailures/parallel.py.
2334     - Document the ParseDepends() function in the User's Guide.
2336   From khomenko:
2338     - Create a separate description and long_description for RPM packages.
2340   From Steven Knight:
2342     - Document the GetLaunchDir() function in the User's Guide.
2344     - Have the env.Execute() method print an error message if the
2345       executed command fails.
2347     - Add a script for creating a standard SCons development system on
2348       Ubuntu Hardy.  Rewrite subsidiary scripts for install Python and
2349       SCons versions in Python (from shell).
2351   From Greg Noel:
2353     - Handle yacc/bison on newer Mac OS X versions creating file.hpp,
2354       not file.cpp.h.
2356     - In RPCGEN tests, ignore stderr messages from older versions of
2357       rpcgen on some versions of Mac OS X.
2359     - Fix typos in man page descriptions of Tag() and Package(), and in
2360       the scons-time man page.
2362     - Fix documentation of SConf.CheckLibWithHeader and other SConf methods.
2364     - Update documentation of SConscript(variant_dir) usage.
2366     - Fix SWIG tests for (some versions of) Mac OS X.
2368   From Jonas Olsson:
2370     - Print the warning about -j on Windows being potentially unreliable if
2371       the pywin32 extensions are unavailable or lack file handle operations.
2373   From Jim Randall:
2375     - Fix the env.WhereIs() method to expand construction variables.
2377   From Rogier Schouten:
2379     - Enable building of shared libraries with the Bordand ilink32 linker.
2383 RELEASE 1.0.0 - Sat, 09 Aug 2008 12:19:44 -0700
2385   From Luca Falavigna:
2387     - Fix SCons man page indentation under Debian's man page macros.
2389   From Steven Knight:
2391     - Clarify the man page description of the SConscript(src_dir) argument.
2393     - User's Guide updates:
2395        -  Document the BUILD_TARGETS, COMMAND_LINE_TARGETS and
2396           DEFAULT_TARGETS variables.
2398        -  Document the AddOption(), GetOption() and SetOption() functions.
2400        -  Document the Requires() function; convert to the Variables
2401           object, its UnknownOptions() method, and its associated
2402           BoolVariable(), EnumVariable(), ListVariable(), PackageVariable()
2403           and PathVariable() functions.
2405        -  Document the Progress() function.
2407        -  Reorganize the chapter and sections describing the different
2408           types of environments and how they interact.  Document the
2409           SetDefault() method.  Document the PrependENVPath() and
2410           AppendENVPath() functions.
2412        -  Reorganize the command-line arguments chapter.  Document the
2413           ARGLIST variable.
2415        -  Collect some miscellaneous sections into a chapter about
2416           configuring build output.
2418     - Man page updates:
2420        -  Document suggested use of the Visual C/C++ /FC option to fix
2421           the ability to double-click on file names in compilation error
2422           messages.
2424        -  Document the need to use Clean() for any SideEffect() files that
2425           must be explicitly removed when their targets are removed.
2427        -  Explicitly document use of Node lists as input to Dependency().
2429   From Greg Noel:
2431     - Document MergeFlags(), ParseConfig(), ParseFlags() and SideEffect()
2432       in the User's Guide.
2434   From Gary Oberbrunner:
2436     - Document use of the GetBuildFailures() function in the User's Guide.
2438   From Adam Simpkins:
2440     - Add man page text clarifying the behavior of AddPreAction() and
2441       AddPostAction() when called with multiple targets.
2443   From Alexey Zezukin:
2445     - Fix incorrectly swapped man page descriptions of the --warn= options
2446       for duplicate-environment and missing-sconscript.
2450 RELEASE 0.98.5 - Sat, 07 Jun 2008 08:20:35 -0700
2452   From Benoit Belley:
2454   - Fix the Intel C++ compiler ABI specification for EMT64 processors.
2456   From David Cournapeau:
2458   - Issue a (suppressable) warning, not an error, when trying to link
2459     C++ and Fortran object files into the same executable.
2461   From Steven Knight:
2463   - Update the scons.bat file so that it returns the real exit status
2464     from SCons, even though it uses setlocal + endlocal.
2466   - Fix the --interactive post-build messages so it doesn't get stuck
2467     mistakenly reporting failures after any individual build fails.
2469   - Fix calling File() as a File object method in some circumstances.
2471   - Fix setup.py installation on Mac OS X so SCons gets installed
2472     under /usr/lcoal by default, not in the Mac OS X Python framework.
2476 RELEASE 0.98.4 - Sat, 17 May 2008 22:14:46 -0700
2478   From Benoit Belley:
2480   - Fix calculation of signatures for Python function actions with
2481     closures in Python versions before 2.5.
2483   From David Cournapeau:
2485   - Fix the initialization of $SHF77FLAGS so it includes $F77FLAGS.
2487   From Jonas Olsson:
2489   - Fix a syntax error in the Intel C compiler support on Windows.
2491   From Steven Knight:
2493   - Change how we represent Python Value Nodes when printing and when
2494     stored in .sconsign files (to avoid blowing out memory by storing
2495     huge strings in .sconsign files after multiple runs using Configure
2496     contexts cause the Value strings to be re-escaped each time).
2498   - Fix a regression in not executing configuration checks after failure
2499     of any configuration check that used the same compiler or other tool.
2501   - Handle multiple destinations in Visual Studio 8 settings for the
2502     analogues to the INCLUDE, LIBRARY and PATH variables.
2504   From Greg Noel:
2506   - Update man page text for VariantDir().
2510 RELEASE 0.98.3 - Tue, 29 Apr 2008 22:40:12 -0700
2512   From Greg Noel:
2514   - Fix use of $CXXFLAGS when building C++ shared object files.
2516   From Steven Knight:
2518   - Fix a regression when a Builder's source_scanner doesn't select
2519     a more specific scanner for the suffix of a specified source file.
2521   - Fix the Options object backwards compatibility so people can still
2522     "import SCons.Options.{Bool,Enum,List,Package,Path}Option" submodules.
2524   - Fix searching for implicit dependencies when an Entry Node shows up
2525     in the search path list.
2527   From Stefano:
2529   - Fix expansion of $FORTRANMODDIR in the default Fortran command line(s)
2530     when it's set to something like ${TARGET.dir}.
2534 RELEASE 0.98.2 - Sun, 20 Apr 2008 23:38:56 -0700
2536   From Steven Knight:
2538   - Fix a bug in Fortran suffix computation that would cause SCons to
2539     run out of memory on Windows systems.
2541   - Fix being able to specify --interactive mode command lines with
2542     \ (backslash) path name separators on Windows.
2544   From Gary Oberbrunner:
2546   - Document Glob() in the User's Guide.
2550 RELEASE 0.98.1 - Fri, 18 Apr 2008 19:11:58 -0700
2552   From Benoit Belley:
2554   - Speed up the SCons.Util.to_string*() functions.
2556   - Optimize various Node intialization and calculations.
2558   - Optimize Executor scanning code.
2560   - Optimize Taskmaster execution, including dependency-cycle checking.
2562   - Fix the --debug=stree option so it prints its tree once, not twice.
2564   From Johan Boul�:
2566   - Fix the ability to use LoadableModule() under MinGW.
2568   From David Cournapeau:
2570   - Various missing Fortran-related construction variables have been added.
2572   - SCons now uses the program specified in the $FORTRAN construction
2573     variable to link Fortran object files.
2575   - Fortran compilers on Linux (Intel, g77 and gfortran) now add the -fPIC
2576     option by default when compilling shared objects.
2578   - New 'sunf77', 'sunf90' and 'sunf95' Tool modules have been added to
2579     support Sun Fortran compilers.  On Solaris, the Sun Fortran compilers
2580     are used in preference to other compilers by default.
2582   - Fortran support now uses gfortran in preference to g77.
2584   - Fortran file suffixes are now configurable through the
2585     $F77FILESUFFIXES, $F90FILESUFFIXES, $F95FILESUFFIXES and
2586     $FORTRANFILESUFFIXES variables.
2588   From Steven Knight:
2590   - Make the -d, -e, -w and --no-print-directory options "Ignored for
2591     compatibility."  (We're not going to implement them.)
2593   - Fix a serious inefficiency in how SCons checks for whether any source
2594     files are missing when a Builder call creates many targets from many
2595     input source files.
2597   - In Java projects, make the target .class files depend only on the
2598     specific source .java files where the individual classes are defined.
2600   - Don't store duplicate source file entries  in the .sconsign file so
2601     we don't endlessly rebuild the target(s) for no reason.
2603   - Add a Variables object as the first step towards deprecating the
2604     Options object name.  Similarly, add BoolVariable(), EnumVariable(),
2605     ListVariable(), PackageVariable() and PathVariable() functions
2606     as first steps towards replacing BoolOption(), EnumOption(),
2607     ListOption(), PackageOption() and PathOption().
2609   - Change the options= keyword argument to the Environment() function
2610     to variables=, to avoid confusion with SCons command-line options.
2611     Continue supporting the options= keyword for backwards compatibility.
2613   - When $SWIGFLAGS contains the -python flag, expect the generated .py
2614     file to be in the same (sub)directory as the target.
2616   - When compiling C++ files, allow $CCFLAGS settings to show up on the
2617     command line even when $CXXFLAGS has been redefined.
2619   - Fix --interactive with -u/-U/-D when a VariantDir() is used.
2621   From Anatoly Techtonik:
2623   - Have the scons.bat file add the script execution directory to its
2624     local %PATH% on Windows, so the Python executable can be found.
2626   From Mike Wake:
2628   - Fix passing variable names as a list to the Return() function.
2630   From Matthew Wesley:
2632   - Add support for the GDC 'D' language compiler.
2636 RELEASE 0.98 - Sun, 30 Mar 2008 23:33:05 -0700
2638   From Benoit Belley:
2640   - Fix the --keep-going flag so it builds all possible targets even when
2641     a later top-level target depends on a child that failed its build.
2643   - Fix being able to use $PDB and $WINDWOWS_INSERT_MANIFEST together.
2645   - Don't crash if un-installing the Intel C compiler leaves left-over,
2646     dangling entries in the Windows registry.
2648   - Improve support for non-standard library prefixes and suffixes by
2649     stripping all prefixes/suffixes from file name string as appropriate.
2651   - Reduce the default stack size for -j worker threads to 256 Kbytes.
2652     Provide user control over this value by adding --stack-size and
2653     --warn=stack-size options, and a SetOption('stack_size') function.
2655   - Fix a crash on Linux systems when trying to use the Intel C compiler
2656     and no /opt/intel_cc_* directories are found.
2658   - Improve using Python functions as actions by incorporating into
2659     a FunctionAction's signature:
2660       - literal values referenced by the byte code.
2661       - values of default arguments
2662       - code of nested functions
2663       - values of variables captured by closures
2664       - names of referenced global variables and functions
2666   - Fix the closing message when --clean and --keep-going are both
2667     used and no errors occur.
2669   - Add support for the Intel C compiler on Mac OS X.
2671   - Speed up reading SConscript files by about 20% (for some
2672     configurations) by:  1) optimizing the SCons.Util.is_*() and
2673     SCons.Util.flatten() functions; 2) avoiding unnecessary os.stat()
2674     calls by using a File's .suffix attribute directly instead of
2675     stringifying it.
2677   From Jérôme Berger:
2679   - Have the D language scanner search for .di files as well as .d files.
2681   - Add a find_include_names() method to the Scanner.Classic class to
2682     abstract out how included names can be generated by subclasses.
2684   - Allow the D language scanner to detect multiple modules imported by
2685     a single statement.
2687   From Konstantin Bozhikov:
2689   - Support expansion of construction variables that contain or refer
2690     to lists of other variables or Nodes within expansions like $CPPPATH.
2692   - Change variable substitution (the env.subst() method) so that an
2693     input sequence (list or tuple) is preserved as a list in the output.
2695   From David Cournapeau:
2697   - Add a CheckDeclaration() call to configure contexts.
2699   - Improve the CheckTypeSize() code.
2701   - Add a Define() call to configure contexts, to add arbitrary #define
2702     lines to a generated configure header file.
2704   - Add a "gfortran" Tool module for the GNU F95/F2003 compiler.
2706   - Avoid use of -rpath with the Mac OS X linker.
2708   - Add comment lines to the generated config.h file to describe what
2709     the various #define/#undef lines are doing.
2711   From Steven Knight:
2713   - Support the ability to subclass the new-style "str" class as input
2714     to Builders.
2716   - Improve the performance of our type-checking by using isinstance()
2717     with new-style classes.
2719   - Fix #include (and other $*PATH variables searches) of files with
2720     absolute path names.  Don't die if they don't exist (due to being
2721     #ifdef'ed out or the like).
2723   - Fix --interactive mode when Default(None) is used.
2725   - Fix --debug=memoizer to work around a bug in base Python 2.2 metaclass
2726     initialization (by just not allowing Memoization in Python versions
2727     that have the bug).
2729   - Have the "scons-time time" subcommand handle empty log files, and
2730     log files that contain no results specified by the --which option.
2732   - Fix the max Y of vertical bars drawn by "scons-time --fmt=gnuplot".
2734   - On Mac OS X, account for the fact that the header file generated
2735     from a C++ file will be named (e.g.) file.cpp.h, not file.hpp.
2737   - Fix floating-point numbers confusing the Java parser about
2738     generated .class file names in some configurations.
2740   - Document (nearly) all the values you can now fetch with GetOption().
2742   - Fix use of file names containing strings of multiple spaces when
2743     using ActionFactory instances like the Copy() or Move() function.
2745   - Fix a 0.97 regression when using a variable expansion (like
2746     $OBJSUFFIX) in a source file name to a builder with attached source
2747     builders that match suffix (like Program()+Object()).
2749   - Have the Java parser recognize generics (surrounded by angle brackets)
2750     so they don't interfere with identifying anonymous inner classes.
2752   - Avoid an infinite loop when trying to use saved copies of the
2753     env.Install() or env.InstallAs() after replacing the method
2754     attributes.
2756   - Improve the performance of setting construction variables.
2758   - When cloning a construction environment, avoid over-writing an
2759     attribute for an added method if the user explicitly replaced it.
2761   - Add a warning about deprecated support for Python 1.5, 2.0 and 2.1.
2763   - Fix being able to SetOption('warn', ...) in SConscript files.
2765   - Add a warning about env.Copy() being deprecated.
2767   - Add warnings about the --debug={dtree,stree,tree} options
2768     being deprecated.
2770   - Add VariantDir() as the first step towards deprecating BuildDir().
2771     Add the keyword argument "variant_dir" as the replacement for
2772     "build_dir".
2774   - Add warnings about the {Target,Source}Signatures() methods and
2775     functions being deprecated.
2777   From Rob Managan:
2779   - Enhance TeX and LaTeX support to work with BuildDir(duplicate=0).
2781   - Re-run LaTeX when it issues a package warning that it must be re-run.
2783   From Leanid Nazdrynau:
2785   - Have the Copy() action factory preserve file modes and times
2786     when copying individual files.
2788   From Jan Nijtmans:
2790   - If $JARCHDIR isn't set explicitly, use the .java_classdir attribute
2791     that was set when the Java() Builder built the .class files.
2793   From Greg Noel:
2795   - Document the Dir(), File() and Entry() methods of Dir and File Nodes.
2797   - Add the parse_flags option when creating Environments
2799   From Gary Oberbrunner:
2801   - Make File(), Dir() and Entry() return a list of Nodes when passed
2802     a list of names, instead of trying to make a string from the name
2803     list and making a Node from that string.
2805   - Fix the ability to build an Alias in --interactive mode.
2807   - Fix the ability to hash the contents of actions for nested Python
2808     functions on Python versions where the inability to pickle them
2809     returns a TypeError (instead of the documented PicklingError).
2811   From Jonas Olsson:
2813   - Fix use of the Intel C compiler when the top compiler directory,
2814     but not the compiler version, is specified.
2816   - Handle Intel C compiler network license files (port@system).
2818   From Jim Randall:
2820   - Fix how Python Value Nodes are printed in --debug=explain output.
2822   From Adam Simpkins:
2824   - Add a --interactive option that starts a session for building (or
2825     cleaning) targets without re-reading the SConscript files every time.
2827   - Fix use of readline command-line editing in --interactive mode.
2829   - Have the --interactive mode "build" command with no arguments
2830     build the specified Default() targets.
2832   - Fix the Chmod(), Delete(), Mkdir() and Touch() Action factories to
2833     take a list (of Nodes or strings) as arguments.
2835   From Vaclav Smilauer:
2837   - Fix saving and restoring an Options value of 'all' on Python
2838     versions where all() is a builtin function.
2840   From Daniel Svensson:
2842   - Code correction in SCons.Util.is_List().
2844   From Ben Webb:
2846   - Support the SWIG %module statement with following modifiers in
2847     parenthese (e.g., '%module(directors="1")').
2851 RELEASE 0.97.0d20071212 - Wed, 12 Dec 2007 09:29:32 -0600
2853   From Benoit Belley:
2855   - Fix occasional spurious rebuilds and inefficiency when using
2856     --implicit-cache and Builders that produce multiple targets.
2858   - Allow SCons to not have to know about the builders of generated
2859     files when BuildDir(duplicate=0) is used, potentially allowing some
2860     SConscript files to be ignored for smaller builds.
2862   From David Cournapeau:
2864   - Add a CheckTypeSize() call to configure contexts.
2866   From Ken Deeter:
2868   - Make the "contents" of Alias Nodes a concatenation of the children's
2869     content signatures (MD5 checksums), not a concatenation of the
2870     children's contents, to avoid using large amounts of memory during
2871     signature calculation.
2873   From Malte Helmert:
2875   - Fix a lot of typos in the man page and User's Guide.
2877   From Geoffrey Irving:
2879   - Speed up conversion of paths in .sconsign files to File or Dir Nodes.
2881   From Steven Knight:
2883   - Add an Options.UnknownOptions() method that returns any settings
2884     (from the command line, or whatever dictionary was passed in)
2885     that aren't known to the Options object.
2887   - Add a Glob() function.
2889   - When removing targets with the -c option, use the absolute path (to
2890     avoid problems interpreting BuildDir() when the top-level directory
2891     is the source directory).
2893   - Fix problems with Install() and InstallAs() when called through a
2894     clone (of a clone, ...) of a cloned construction environment.
2896   - When executing a file containing Options() settings, add the file's
2897     directory to sys.path (so modules can be imported from there) and
2898     explicity set __name__ to the name of the file so the statement's
2899     in the file can deduce the location if they need to.
2901   - Fix an O(n^2) performance problem when adding sources to a target
2902     through calls to a multi Builder (including Aliases).
2904   - Redefine the $WINDOWSPROGMANIFESTSUFFIX and
2905     $WINDOWSSHLIBMANIFESTSUFFIX variables so they pick up changes to
2906     the underlying $SHLIBSUFFIX and $PROGSUFFIX variables.
2908   - Add a GetBuildFailures() function that can be called from functions
2909     registered with the Python atexit module to print summary information
2910     about any failures encountered while building.
2912   - Return a NodeList object, not a Python list, when a single_source
2913     Builder like Object() is called with more than one file.
2915   - When searching for implicit dependency files in the directories
2916     in a $*PATH list, don't create Dir Nodes for directories that
2917     don't actually exist on-disk.
2919   - Add a Requires() function to allow the specification of order-only
2920     prerequisites, which will be updated before specified "downstream"
2921     targets but which don't actually cause the target to be rebuilt.
2923   - Restore the FS.{Dir,File,Entry}.rel_path() method.
2925   - Make the default behavior of {Source,Target}Signatures('timestamp')
2926     be equivalent to 'timestamp-match', not 'timestamp-newer'.
2928   - Fix use of CacheDir with Decider('timestamp-newer') by updating
2929     the modification time when copying files from the cache.
2931   - Fix random issues with parallel (-j) builds on Windows when Python
2932     holds open file handles (especially for SCons temporary files,
2933     or targets built by Python function actions) across process creation.
2935   From Maxim Kartashev:
2937   - Fix test scripts when run on Solaris.
2939   From Gary Oberbrunner:
2941   - Fix Glob() when a pattern is in an explicitly-named subdirectory.
2943   From Philipp Scholl:
2945   - Fix setting up targets if multiple Package builders are specified
2946     at once.
2950 RELEASE 0.97.0d20070918 - Tue, 18 Sep 2007 10:51:27 -0500
2952   From Steven Knight:
2954   - Fix the wix Tool module to handle null entries in $PATH variables.
2956   - Move the documentation of Install() and InstallAs() from the list
2957     of functions to the list of Builders (now that they're implemented
2958     as such).
2960   - Allow env.CacheDir() to be set per construction environment.  The
2961     global CacheDir() function now sets an overridable global default.
2963   - Add an env.Decider() method and a Node.Decider() method that allow
2964     flexible specification of an arbitrary function to decide if a given
2965     dependency has changed since the last time a target was built.
2967   - Don't execute Configure actions (while reading SConscript files)
2968     when cleaning (-c) or getting help (-h or -H).
2970   - Add to each target an implicit dependency on the external command(s)
2971     used to build the target, as found by searching env['ENV']['PATH']
2972     for the first argument on each executed command line.
2974   - Add support for a $IMPLICIT_COMMAND_DEPENDENCIES construction
2975     variabe that can be used to disable the automatic implicit
2976     dependency on executed commands.
2978   - Add an "ensure_suffix" keyword to Builder() definitions that, when
2979     true, will add the configured suffix to the targets even if it looks
2980     like they already have a different suffix.
2982   - Add a Progress() function that allows for calling a function or string
2983     (or list of strings) to display progress while walking the DAG.
2985   - Allow ParseConfig(), MergeFlags() and ParseFlags() to handle output
2986     from a *config command with quoted path names that contain spaces.
2988   - Make the Return() function stop processing the SConscript file and
2989     return immediately.  Add a "stop=" keyword argument that can be set
2990     to False to preserve the old behavior.
2992   - Fix use of exitstatfunc on an Action.
2994   - Introduce all man page function examples with "Example:" or "Examples:".
2996   - When a file gets added to a directory, make sure the directory gets
2997     re-scanned for the new implicit dependency.
2999   - Fix handling a file that's specified multiple times in a target
3000     list so that it doesn't cause dependent Nodes to "disappear" from
3001     the dependency graph walk.
3003   From Carsten Koch:
3005   - Avoid race conditions with same-named files and directory creation
3006     when pushing copies of files to CacheDir().
3008   From Tzvetan Mikov:
3010   - Handle $ in Java class names.
3012   From Gary Oberbrunner:
3014   - Add support for the Intel C compiler on Windows64.
3016   - On SGI IRIX, have $SHCXX use $CXX by default (like other platforms).
3018   From Sohail Somani:
3020   - When Cloning a construction environment, set any variables before
3021     applying tools (so the tool module can access the configured settings)
3022     and re-set them after (so they end up matching what the user set).
3024   From Matthias Troffaes:
3026   - Make sure extra auxiliary files generated by some LaTeX packages
3027     and not ending in .aux also get deleted by scons -c.
3029   From Greg Ward:
3031   - Add a $JAVABOOTCLASSPATH variable for directories to be passed to the
3032     javac -bootclasspath option.
3034   From Christoph Wiedemann:
3036   - Add implicit dependencies on the commands used to build a target.
3041 RELEASE 0.97.0d20070809 - Fri, 10 Aug 2007 10:51:27 -0500
3043   From Lars Albertsson:
3045   - Don't error if a #include line happens to match a directory
3046     somewhere on a path (like $CPPPATH, $FORTRANPATH, etc.).
3048   From Mark Bertoglio:
3050   - Fix listing multiple projects in Visual Studio 7.[01] solution files,
3051     including generating individual project GUIDs instead of re-using
3052     the solution GUID.
3054   From Jean Brouwers:
3056   - Add /opt/SUNWspro/bin to the default execution PATH on Solaris.
3058   From Allan Erskine:
3060   - Only expect the Microsoft IDL compiler to emit *_p.c and *_data.c
3061     files if the /proxy and /dlldata switches are used (respectively).
3063   From Steven Knight:
3065   - Have --debug=explain report if a target is being rebuilt because
3066     AlwaysBuild() is specified (instead of "unknown reasons").
3068   - Support {Get,Set}Option('help') to make it easier for SConscript
3069     files to tell if a help option (-h, --help, etc.) has been specified.
3071   - Support {Get,Set}Option('random') so random-dependency interaction
3072     with CacheDir() is controllable from SConscript files.
3074   - Add a new AddOption() function to support user-defined command-
3075     line flags (like --prefix=, --force, etc.).
3077   - Replace modified Optik version with new optparse compatibility module
3078     for command line processing in Scripts/SConsOptions.py
3080   - Push and retrieve built symlinks to/from a CacheDir() as actual
3081     symlinks, not by copying the file contents.
3083   - Fix how the Action module handles stringifying the shared library
3084     generator in the Tool/mingw.py module.
3086   - When generating a config.h file, print "#define HAVE_{FEATURE} 1"
3087     instad of just "#define HAVE_{FEATURE}", for more compatibility
3088     with Autoconf-style projects.
3090   - Fix expansion of $TARGET, $TARGETS, $SOURCE and $SOURCES keywords in
3091     Visual C/C++ PDB file names.
3093   - Fix locating Visual C/C++ PDB files in build directories.
3095   - Support an env.AddMethod() method and an AddMethod() global function
3096     for adding a new method, respectively, to a construction environment
3097     or an arbitrary object (such as a class).
3099   - Fix the --debug=time option when the -j option is specified and all
3100     files are up to date.
3102   - Add a $SWIGOUTDIR variable to allow setting the swig -outdir option,
3103     and use it to identify files created by the swig -java option.
3105   - Add a $SWIGPATH variable that specifies the path to be searched
3106     for included SWIG files, Also add related $SWIGINCPREFIX and
3107     $SWIGINCSUFFIX variables that specify the prefix and suffix to
3108     be be added to each $SWIGPATH directory when expanded on the SWIG
3109     command line.
3111   - More efficient copying of construction environments (mostly borrowed
3112     from copy.deepcopy() in the standard Python library).
3114   - When printing --tree=prune output, don't print [brackets] around
3115     source files, only do so for built targets with children.
3117   - Fix interpretation of Builder source arguments when the Builder has
3118     a src_suffix *and* a source_builder and the argument has no suffix.
3120   - Fix use of expansions like ${TARGET.dir} or ${SOURCE.dir} in the
3121     following construction variables:  $FORTRANMODDIR, $JARCHDIR,
3122     $JARFLAGS, $LEXFLAGS, $SWIGFLAGS, $SWIGOUTDIR and $YACCFLAGS.
3124   - Fix dependencies on Java files generated by SWIG so they can be
3125     detected and built in one pass.
3127   - Fix SWIG when used with a BuildDir().
3129   From Leanid Nazdrynau:
3131   - When applying Tool modules after a construction environment has
3132     already been created, don't overwrite existing $CFILESUFFIX and
3133     $CXXFILESUFFIX value.
3135   - Support passing the Java() builder a list of explicit .java files
3136     (not only a list of directories to be scanned for .java files).
3138   - Support passing .java files to the Jar() and JavaH() builders, which
3139     then use the builder underlying the Java() builder to turn them into
3140     .class files.  (That is, the Jar()-Java() chain of builders become
3141     multi-step, like the Program()-Object()-CFile() builders.)
3143   - Support passing SWIG .i files to the Java builders (Java(),
3144     Jar(), JavaH()), to cause intermediate .java files to be created
3145     automatically.
3147   - Add $JAVACLASSPATH and $JAVASOURCEPATH variables, that get added to
3148     the javac "-classpath" and "-sourcepath" options.  (Note that SCons
3149     does *not* currently search these paths for implicit dependencies.)
3151   - Commonize initialization of Java-related builders.
3153   From Jan Nijtmans:
3155   - Find Java anonymous classes when the next token after the name is
3156     an open parenthesis.
3158   From Gary Oberbrunner:
3160   - Fix a code example in the man page.
3162   From Tilo Prutz:
3164   - Add support for the file names that Java 1.5 (and 1.6) generates for
3165     nested anonymous inner classes, which are different from Java 1.4.
3167   From Adam Simpkins:
3169   - Allow worker threads to terminate gracefully when all jobs are
3170     finished.
3172   From Sohail Somani:
3174   - Add LaTeX scanner support for finding dependencies specified with
3175     the \usepackage{} directive.
3179 RELEASE 0.97 - Thu, 17 May 2007 08:59:41 -0500
3181   From Steven Knight:
3183   - Fix a bug that would make parallel builds stop in their tracks if
3184     Nodes that depended on lists that contained some Nodes built together
3185     caused the reference count to drop below 0 if the Nodes were visited
3186     and commands finished in the wrong order.
3188   - Make sure the DirEntryScanner doesn't choke if it's handed something
3189     that's not a directory (Node.FS.Dir) Node.
3193 RELEASE 0.96.96 - Thu, 12 Apr 2007 12:36:25 -0500
3195   NOTE:  This is (Yet) a(nother) pre-release of 0.97 for testing purposes.
3197   From Joe Bloggs:
3199   - Man page fix:  remove cut-and-paste sentence in NoCache() description.
3201   From Dmitry Grigorenko and Gary Oberbrunner:
3203   - Use the Intel C++ compiler, not $CC, to link C++ source.
3205   From Helmut Grohne:
3207   - Fix the man page example of propagating a user's external environment.
3209   From Steven Knight:
3211   - Back out (most of) the Windows registry installer patch, which
3212     seems to not work on some versions of Windows.
3214   - Don't treat Java ".class" attributes as defining an inner class.
3216   - Fix detecting an erroneous Java anonymous class when the first
3217     non-skipped token after a "new" keyword is a closing brace.
3219   - Fix a regression when a CPPDEFINES list contains a tuple, the second
3220     item of which (the option value) is a construction variable expansion
3221     (e.g. $VALUE) and the value of the variable isn't a string.
3223   - Improve the error message if an IOError (like trying to read a
3224     directory as a file) occurs while deciding if a node is up-to-date.
3226   - Fix "maximum recursion" / "unhashable type" errors in $CPPPATH
3227     PathList expansion if a subsidiary expansion yields a stringable,
3228     non-Node object.
3230   - Generate API documentation from the docstrings (using epydoc).
3232   - Fix use of --debug=presub with Actions for out-of-the-box Builders.
3234   - Fix handling nested lists within $CPPPATH, $LIBPATH, etc.
3236   - Fix a "builders_used" AttributeError that real-world Qt initialization
3237     triggered in the refactored suffix handling for Builders.
3239   - Make the reported --debug=time timings meaningful when used with -j.
3240     Better documentation of what the times mean.
3242   - User Guide updates: --random, AlwaysBuild(), --tree=,
3243     --debug=findlibs, --debug=presub, --debug=stacktrace,
3244     --taskmastertrace.
3246   - Document (in both man page and User's Guide) that --implicit-cache
3247     ignores changes in $CPPPATH, $LIBPATH, etc.
3249   From Jean-Baptiste Lab:
3251   - Remove hard-coded dependency on Python 2.2 from Debian packaging files.
3253   From Jeff Mahovsky:
3255   - Handle spaces in the build target name in Visual Studio project files.
3257   From Rob Managan:
3259   - Re-run LaTeX after BibTeX has been re-run in response to a changed
3260     .bib file.
3262   From Joel B. Mohler:
3264   - Make additional TeX auxiliary files (.toc, .idx and .bbl files)
3265     Precious so their removal doesn't affect whether the necessary
3266     sections are included in output PDF or PostScript files.
3268   From Gary Oberbrunner:
3270   - Fix the ability to import modules in the site_scons directory from
3271     a subdirectory.
3273   From Adam Simpkins:
3275   - Make sure parallel (-j) builds all targets even if they show up
3276     multiple times in the child list (as a source and a dependency).
3278   From Matthias Troffaes:
3280   - Don't re-run TeX if the triggering strings (\makeindex, \bibliography
3281     \tableofcontents) are commented out.
3283   From Richard Viney:
3285   - Fix use of custom include and lib paths with Visual Studio 8.
3287   - Select the default .NET Framework SDK Dir based on the version of
3288     Visual Studio being used.
3292 RELEASE 0.96.95 - Mon, 12 Feb 2007 20:25:16 -0600
3294   From Anatoly Techtonik:
3296   - Add the scons.org URL and a package description to the setup.py
3297     arguments.
3299   - Have the Windows installer add a registry entry for scons.bat in the
3300     "App Paths" key, so scons.bat can be executed without adding the
3301     directory to the %PATH%.  (Python itself works this way.)
3303   From Anonymous:
3305   - Fix looking for default paths in Visual Studio 8.0 (and later).
3307   - Add -lm to the list of default D libraries for linking.
3309   From Matt Doar:
3311   - Provide a more complete write-your-own-Scanner example in the man page.
3313   From Ralf W. Grosse-Kunstleve:
3315   - Contributed upstream Python change to our copied subprocess.py module
3316     for more efficient standard input processing.
3318   From Steven Knight:
3320   - Fix the Node.FS.Base.rel_path() method when the two nodes are on
3321     different drive letters.  (This caused an infinite loop when
3322     trying to write .sconsign files.)
3324   - Fully support Scanners that use a dictionary to map file suffixes
3325     to other scanners.
3327   - Support delayed evaluation of the $SPAWN variable to allow selection
3328     of a function via ${} string expansions.
3330   - Add --srcdir as a synonym for -Y/--repository.
3332   - Document limitations of #include "file.h" with Repository().
3334   - Fix use of a toolpath under the source directory of a BuildDir().
3336   - Fix env.Install() with a file name portion that begins with '#'.
3338   - Fix ParseConfig()'s handling of multiple options in a string that's
3339     replaced a *FLAGS construction variable.
3341   - Have the C++ tools initialize common C compilation variables ($CCFLAGS,
3342     $SHCCFLAGS and $_CCCOMCOM) even if the 'cc' Tool isn't loaded.
3344   From Leanid Nazdrynau:
3346   - Fix detection of Java anonymous classes if a newline precedes the
3347     opening brace.
3349   From Gary Oberbrunner:
3351   - Document use of ${} to execute arbitrary Python code.
3353   - Add support for:
3354     1) automatically adding a site_scons subdirectory (in the top-level
3355        SConstruct directory) to sys.path (PYTHONPATH);
3356     2) automatically importing site_scons/site_init.py;
3357     3) automatically adding site_scons/site_tools to the toolpath.
3359   From John Pye:
3361   - Change ParseConfig() to preserve white space in arguments passed in
3362     as a list.
3364   From a smith:
3366   - Fix adding explicitly-named Java inner class files (and any
3367     other file names that may contain a '$') to Jar files.
3369   From David Vitek:
3371   - Add a NoCache() function to mark targets as unsuitable for propagating
3372     to (or retrieving from) a CacheDir().
3374   From Ben Webb:
3376   - If the swig -noproxy option is used, it won't generate a .py file,
3377     so don't emit it as a target that we expect to be built.
3381 RELEASE 0.96.94 - Sun, 07 Jan 2007 18:36:20 -0600
3383   NOTE:  This is a pre-release of 0.97 for testing purposes.
3385   From Anonymous:
3387   - Allow arbitrary white space after a SWIG %module declaration.
3389   From Paul:
3391   - When compiling resources under MinGW, make sure there's a space
3392     between the --include-dir option and its argument.
3394   From Jay Kint:
3396   - Alleviate long command line issues on Windows by executing command
3397     lines directly via os.spawnv() if the command line doesn't need
3398     shell interpretation (has no pipes, redirection, etc.).
3400   From Walter Franzini:
3402   - Exclude additional Debian packaging files from the copyright check.
3404   From Fawad Halim:
3406   - Handle the conflict between the impending Python 2.6 'as' keyword
3407     and our Tool/as.py module name.
3409   From Steven Knight:
3411   - Speed up the Node.FS.Dir.rel_path() method used to generate path names
3412     that get put into the .sconsign* file(s).
3414   - Optimize Node.FS.Base.get_suffix() by computing the suffix once, up
3415     front, when we set the Node's name.  (Duh...)
3417   - Reduce the Memoizer's responsibilities to simply counting hits and
3418     misses when the --debug=memoizer option is used, not to actually
3419     handling the key calculation and memoization itself.  This speeds
3420     up some configurations significantly, and should cause no functional
3421     differences.
3423   - Add a new scons-time script with subcommands for generating
3424     consistent timing output from SCons configurations, extracting
3425     various information from those timings, and displaying them in
3426     different formats.
3428   - Reduce some unnecessary stat() calls from on-disk entry type checks.
3430   - Fix SideEffect() when used with -j, which was badly broken in 0.96.93.
3432   - Propagate TypeError exceptions when evaluating construction variable
3433     expansions up the stack, so users can see what's going on.
3435   - When disambiguating a Node.FS.Entry into a Dir or File, don't look
3436     in the on-disk source directory until we've confirmed there's no
3437     on-disk entry locally and there *is* one in the srcdir.  This avoids
3438     creating a phantom Node that can interfere with dependencies on
3439     directory contents.
3441   - Add an AllowSubstExceptions() function that gives the SConscript
3442     files control over what exceptions cause a string to expand to ''
3443     vs. terminating processing with an error.
3445   - Allow the f90.py and f95.py Tool modules to compile earlier source
3446     source files of earlier Fortran version.
3448   - Fix storing signatures of files retrieved from CacheDir() so they're
3449     correctly identified as up-to-date next invocation.
3451   - Make sure lists of computed source suffixes cached by Builder objects
3452     don't persist across changes to the list of source Builders (so the
3453     addition of suffixes like .ui by the qt.py Tool module take effect).
3455   - Enhance the bootstrap.py script to allow it to be used to execute
3456     SCons more easily from a checked-out source tree.
3458   From Ben Leslie:
3460   - Fix post-Memoizer value caching misspellings in Node.FS._doLookup().
3462   From Rob Managan, Dmitry Mikhin and Joel B. Mohler:
3464   - Handle TeX/LaTeX files in subdirectories by changing directory
3465     before invoking TeX/LaTeX.
3467   - Scan LaTeX files for \bibliography lines.
3469   - Support multiple file names in a "\bibliography{file1,file2}" string.
3471   - Handle TeX warnings about undefined citations.
3473   - Support re-running LaTeX if necessary due to a Table of Contents.
3475   From Dmitry Mikhin:
3477   - Return LaTeX if "Rerun to get citations correct" shows up on the next
3478     line after the "Warning:" string.
3480   From Gary Oberbrunner:
3482   - Add #include lines to fix portability issues in two tests.
3484   - Eliminate some unnecessary os.path.normpath() calls.
3486   - Add a $CFLAGS variable for C-specific options, leaving $CCFLAGS
3487     for options common to C and C++.
3489   From Tom Parker:
3491   - Have the error message print the missing file that Qt can't find.
3493   From John Pye:
3495   - Fix env.MergeFlags() appending to construction variable value of None.
3497   From Steve Robbins:
3499   - Fix the "sconsign" script when the .sconsign.dblite file is explicitly
3500     specified on the command line (and not intuited from the old way of
3501     calling it with just ".sconsign").
3503   From Jose Pablo Ezequiel "Pupeno" Fernandez Silva:
3505   - Give the 'lex' tool knowledge of the additional target files produced
3506     by the flex "--header-file=" and "--tables-file=" options.
3508   - Give the 'yacc' tool knowledge of the additional target files produced
3509     by the bison "-g", "--defines=" and "--graph=" options.
3511   - Generate intermediate files with Objective C file suffixes (.m) when
3512     the lex and yacc source files have appropriate suffixes (.lm and .ym).
3514   From Sohail Somain:
3516   - Have the mslink.py Tool only look for a 'link' executable on Windows
3517     systems.
3519   From Vaclav Smilauer:
3521   - Add support for a "srcdir" keyword argument when calling a Builder,
3522     which will add a srcdir prefix to all non-relative string sources.
3524   From Jonathan Ultis:
3526   - Allow Options converters to take the construction environment as
3527     an optional argument.
3531 RELEASE 0.96.93 - Mon, 06 Nov 2006 00:44:11 -0600
3533   NOTE:  This is a pre-release of 0.97 for testing purposes.
3535   From Anonymous:
3537   - Allow Python Value Nodes to be Builder targets.
3539   From Matthias:
3541   - Only filter Visual Studio common filename prefixes on complete
3542     directory names.
3544   From Chad Austin:
3546   - Fix the build of the SCons documentation on systems that don't
3547     have "python" in the $PATH.
3549   From Ken Boortz:
3551   - Enhance ParseConfig() to recognize options that begin with '+'.
3553   From John Calcote, Elliot Murphy:
3555   - Document ways to override the CCPDBFLAGS variable to use the
3556     Microsoft linker's /Zi option instead of the default /Z7.
3558   From Christopher Drexler:
3560   - Make SCons aware bibtex must be called if any \include files
3561     cause creation of a bibliography.
3563   - Make SCons aware that "\bilbiography" in TeX source files means
3564     that related .bbl and .blg bibliography files will be created.
3565     (NOTE:  This still needs to search for the string in \include files.)
3567   From David Gruener:
3569   - Fix inconsistent handling of Action strfunction arguments.
3571   - Preserve white space in display Action strfunction strings.
3573   From James Y. Knight and Gerard Patel:
3575   - Support creation of shared object files from assembly language.
3577   From Steven Knight:
3579   - Speed up the Taskmaster significantly by avoiding unnecessary
3580     re-scans of Nodes to find out if there's work to be done, having it
3581     track the currently-executed top-level target directly and not
3582     through its presence on the target list, and eliminating some other
3583     minor list(s), method(s) and manipulation.
3585   - Fix the expansion of $TARGET and $SOURCE in the expansion of
3586     $INSTALLSTR displayed for non-environment calls to InstallAs().
3588   - Fix the ability to have an Alias() call refer to a directory
3589     name that's not identified as a directory until later.
3591   - Enhance runtest.py with an option to use QMTest as the harness.
3592     This will become the default behavior as we add more functionality
3593     to the QMTest side.
3595   - Let linking on mingw use the default function that chooses $CC (gcc)
3596     or $CXX (g++) depending on whether there are any C++ source files.
3598   - Work around a bug in early versions of the Python 2.4 profile module
3599     that caused the --profile= option to fail.
3601   - Only call Options validators and converters once when initializing a
3602     construction environment.
3604   - Fix the ability of env.Append() and env.Prepend(), in all known Python
3605     versions, to handle different input value types when the construction
3606     variable being updated is a dictionary.
3608   - Add a --cache-debug option for information about what files it's
3609     looking for in a CacheDir().
3611   - Document the difference in construction variable expansion between
3612     {Action,Builder}() and env.{Action,Builder}().
3614   - Change the name of env.Copy() to env.Clone(), keeping the old name
3615     around for backwards compatibility (with the intention of eventually
3616     phasing it out to avoid confusion with the Copy() Action factory).
3618   From Arve Knudsen:
3620   - Support cleaning and scanning SWIG-generated files.
3622   From Carsten Koch:
3624   - Allow selection of Visual Studio version by setting $MSVS_VERSION
3625     after construction environment initialization.
3627   From Jean-Baptiste Lab:
3629   - Try using zipimport if we can't import Tool or Platform modules
3630     using the normal "imp" module.  This allows SCons to be packaged
3631     using py2exe's all-in-one-zip-file approach.
3633   From Ben Liblit:
3635   - Do not re-scan files if the scanner returns no implicit dependencies.
3637   From Sanjoy Mahajan:
3639   - Change use of $SOURCES to $SOURCE in all TeX-related Tool modules.
3641   From Joel B. Mohler:
3643   - Make SCons aware that "\makeindex" in TeX source files means that
3644     related .ilg, .ind and .idx index files will be created.
3645     (NOTE:  This still needs to search for the string in \include files.)
3647   - Prevent scanning the TeX .aux file for additional files from
3648     trying to remove it twice when the -c option is used.
3650   From Leanid Nazdrynau:
3652   - Give the MSVC RES (resource) Builder a src_builder list and a .rc
3653     src_suffix so other builders can generate .rc files.
3655   From Matthew A. Nicholson:
3657   - Enhance Install() and InstallAs() to handle directory trees as sources.
3659   From Jan Nijtmans:
3661   - Don't use the -fPIC flag when using gcc on Windows (e.g. MinGW).
3663   From Greg Noel:
3665   - Add an env.ParseFlags() method that provides separate logic for
3666     parsing GNU tool chain flags into a dictionary.
3668   - Add an env.MergeFlags() method to apply an arbitrary dictionary
3669     of flags to a construction environment's variables.
3671   From Gary Oberbrunner:
3673   - Fix parsing tripartite Intel C compiler version numbers on Linux.
3675   - Extend the ParseConfig() function to recognize -arch and
3676     -isysroot options.
3678   - Have the error message list the known suffixes when a Builder call
3679     can't build a source file with an unknown suffix.
3681   From Karol Pietrzak:
3683   - Avoid recursive calls to main() in the program snippet used by the
3684     SConf subsystem to test linking against libraries.  This changes the
3685     default behavior of CheckLib() and CheckLibWithHeader() to print
3686     "Checking for C library foo..." instead of "Checking for main()
3687     in C library foo...".
3689   From John Pye:
3691   - Throw an exception if a command called by ParseConfig() or
3692     ParseFlags() returns an error.
3694   From Stefan Seefeld:
3696   - Initial infrastructure for running SCons tests under QMTest.
3698   From Sohail Somani:
3700   - Fix tests that fail due to gcc warnings.
3702   From Dobes Vandermeer:
3704   - In stack traces, print the full paths of SConscript files.
3706   From Atul Varma:
3708   - Fix detection of Visual C++ Express Edition.
3710   From Dobes Vandermeer:
3712   - Let the src_dir option to the SConscript() function affect all the
3713     the source file paths, instead of treating all source files paths
3714     as relative to the SConscript directory itself.
3716   From Nicolas Vigier:
3718   - Fix finding Fortran modules in build directories.
3720   - Fix use of BuildDir() when the source file in the source directory
3721     is a symlink with a relative path.
3723   From Edward Wang:
3725   - Fix the Memoizer when the SCons Python modules are executed from
3726     .pyo files at different locations from where they were compiled.
3728   From Johan Zander:
3730   - Fix missing os.path.join() when constructing the $FRAMEWORKSDKDIR/bin.
3734 RELEASE 0.96.92 - Mon, 10 Apr 2006 21:08:22 -0400
3736   NOTE:  This was a pre-release of 0.97 for testing purposes.
3738   From Anonymous:
3740   - Fix the intelc.py Tool module to not throw an exception if the
3741     only installed version is something other than ia32.
3743   - Set $CCVERSION when using gcc.
3745   From Matthias:
3747   - Support generating project and solution files for Microsoft
3748     Visual Studio version 8.
3750   - Support generating more than one project file for a Microsoft
3751     Visual Studio solution file.
3753   - Add support for a support "runfile" parameter to Microsoft
3754     Visual Studio project file creation.
3756   - Put the project GUID, not the solution GUID, in the right spot
3757     in the solution file.
3759   From Erling Andersen:
3761   - Fix interpretation of Node.FS objects wrapped in Proxy instances,
3762     allowing expansion of things like ${File(TARGET)} in command lines.
3764   From Stanislav Baranov:
3766   - Add a separate MSVSSolution() Builder, with support for the
3767     following new construction variables: $MSVSBUILDCOM, $MSVSCLEANCOM,
3768     $MSVSENCODING, $MSVSREBUILDCOM, $MSVSSCONS, $MSVSSCONSCOM,
3769     $MSVSSCONSFLAGS, $MSVSSCONSCRIPT and $MSVSSOLUTIONCOM.
3771   From Ralph W. Grosse-Kunstleve and Patrick Mezard:
3773   - Remove unneceesary (and incorrect) SCons.Util strings on some function
3774     calls in SCons.Util.
3776   From Bob Halley:
3778   - Fix C/C++ compiler selection on AIX to not always use the external $CC
3779     environment variable.
3781   From August Hörandl:
3783   - Add a scanner for \include and \import files, with support for
3784     searching a directory list in $TEXINPUTS (imported from the external
3785     environment).
3787   - Support $MAKEINDEX, $MAKEINDEXCOM, $MAKEINDEXCOMSTR and
3788     $MAKEINDEXFLAGS for generating indices from .idx files.
3790   From Steven Johnson:
3792   - Add a NoClean() Environment method and function to override removal
3793     of targets during a -c clean, including documentation and tests.
3795   From Steven Knight:
3797   - Check for whether files exist on disk by listing the directory
3798     contents, not calling os.path.exists() file by file.  This is
3799     somewhat more efficient in general, and may be significantly
3800     more efficient on Windows.
3802   - Minor speedups in the internal is_Dict(), is_List() and is_String()
3803     functions.
3805   - Fix a signature refactoring bug that caused Qt header files to
3806     get re-generated every time.
3808   - Don't fail when writing signatures if the .sconsign.dblite file is
3809     owned by a different user (e.g. root) from a previous run.
3811   - When deleting variables from stacked OverrideEnvironments, don't
3812     throw a KeyError if we were able to delte the variable from any
3813     Environment in the stack.
3815   - Get rid of the last indentation tabs in the SCons source files and
3816     add -tt to the Python invocations in the packaging build and the
3817     tests so they don't creep back in.
3819   - In Visual Studio project files, put quotes around the -C directory
3820     so everything works even if the path has spaces in it.
3822   - The Intel Fortran compiler uses -object:$TARGET, not "-o $TARGET",
3823     when building object files on Windows.  Have the the ifort Tool
3824     modify the default command lines appropriately.
3826   - Document the --debug=explain option in the man page.  (How did we
3827     miss this?)
3829   - Add a $LATEXRETRIES variable to allow configuration of the number of
3830     times LaTex can be re-called to try to resolve undefined references.
3832   - Change the order of the arguments to Configure.Checklib() to match
3833     the documentation.
3835   - Handle signature calculation properly when the Python function used
3836     for a FunctionAction is an object method.
3838   - On Windows, assume that absolute path names without a drive letter
3839     refer to the drive on which the SConstruct file lives.
3841   - Add /usr/ccs/bin to the end of the the default external execution
3842     PATH on Solaris.
3844   - Add $PKGCHK and $PKGINFO variables for use on Solaris when searching
3845     for the SunPRO C++ compiler.  Make the default value for $PKGCHK
3846     be /usr/sbin/pgkchk (since /usr/sbin isn't usually on the external
3847     execution $PATH).
3849   - Fix a man page example of overriding variables when calling
3850     SharedLibrary() to also set the $LIBSUFFIXES variable.
3852   - Add a --taskmastertrace=FILE option to give some insight on how
3853     the taskmaster decides what Node to build next.
3855   - Changed the names of the old $WIN32DEFPREFIX, $WIN32DEFSUFFIX,
3856     $WIN32DLLPREFIX and $WIN32IMPLIBPREFIX construction variables to
3857     new $WINDOWSDEFPREFIX, $WINDOWSDEFSUFFIX, $WINDOWSDLLPREFIX and
3858     $WINDOWSIMPLIBPREFIX construction variables.  The old names are now
3859     deprecated, but preserved for backwards compatibility.
3861   - Fix (?) a runtest.py hang on Windows when the --xml option is used.
3863   - Change the message when an error occurs trying to interact with the
3864     file system to report the target(s) in square brackets (as before) and
3865     the actual file or directory that encountered the error afterwards.
3867   From Chen Lee:
3869   - Add x64 support for Microsoft Visual Studio 8.
3871   From Baptiste Lepilleur:
3873   - Support the --debug=memory option on Windows when the Python version
3874     has the win32process and win32api modules.
3876   - Add support for Visual Studio 2005 Pro.
3878   - Fix portability issues in various tests: test/Case.py,
3879     Test/Java/{JAR,JARCHDIR,JARFLAGS,JAVAC,JAVACFLAGS,JAVAH,RMIC}.py,
3880     test/MSVS/vs-{6.0,7.0,7.1,8.0}-exec.py,
3881     test/Repository/{Java,JavaH,RMIC}.py,
3882     test/QT/{generated-ui,installed,up-to-date,warnings}.py,
3883     test/ZIP/ZIP.py.
3885   - Ignore pkgchk errors on Solaris when searching for the C++ compiler.
3887   - Speed up the SCons/EnvironmentTests.py unit tests.
3889   - Add a --verbose= option to runtest.py to print executed commands
3890     and their output at various levels.
3892   From Christian Maaser:
3894   - Add support for Visual Studio Express Editions.
3896   - Add support for Visual Studio 8 *.manifest files, includng
3897     new $WINDOWS_INSERT_MANIFEST, $WINDOWSPROGMANIFESTSUFFIX,
3898     $WINDOWSPROGMANIFESTPREFIX, $WINDOWSPROGMANIFESTSUFFIX,
3899     $WINDOWSSHLIBMANIFESTPREFIX and $WINDOWSSHLIBMANIFESTSUFFIX
3900     construction variables.
3902   From Adam MacBeth:
3904   - Fix detection of additional Java inner classes following use of a
3905     "new" keyword inside an inner class.
3907   From Sanjoy Mahajan:
3909   - Correct TeX-related command lines to just $SOURCE, not $SOURCES
3911   From Patrick Mezard:
3913   - Execute build commands for a command-line target if any of the
3914     files built along with the target is out of date or non-existent,
3915     not just if the command-line target itself is out of date.
3917   - Fix the -n option when used with -c to print all of the targets
3918     that will be removed for a multi-target Builder call.
3920   - If there's no file in the source directory, make sure there isn't
3921     one in the build directory, too, to avoid dangling files left
3922     over from previous runs when a source file is removed.
3924   - Allow AppendUnique() and PrependUnique() to append strings (and
3925     other atomic objects) to lists.
3927   From Joel B. Mohler:
3929   - Extend latex.py, pdflatex.py, pdftex.py and tex.py so that building
3930     from both TeX and LaTeX files uses the same logic to call $BIBTEX
3931     when it's necessary, to call $MAKEINDEX when it's necessary, and to
3932     call $TEX or $LATEX multiple times to handle undefined references.
3934   - Add an emitter to the various TeX builders so that the generated
3935     .aux and .log files also get deleted by the -c option.
3937   From Leanid Nazdrynau:
3939   - Fix the Qt UIC scanner to work with generated .ui files (by using
3940     the FindFile() function instead of checking by-hand for the file).
3942   From Jan Nieuwenhuizen:
3944   - Fix a problem with interpreting quoted argument lists on command lines.
3946   From Greg Noel:
3948   - Add /sw/bin to the default execution PATH on Mac OS X.
3950   From Kian Win Ong:
3952   - When building a .jar file and there is a $JARCHDIR, put the -C
3953     in front of each .class file on the command line.
3955   - Recognize the Java 1.5 enum keyword.
3957   From Asfand Yar Qazi:
3959   - Add /opt/bin to the default execution PATH on all POSIX platforms
3960     (between /usr/local/bin and /bin).
3962   From Jon Rafkind:
3964   - Fix the use of Configure() contexts from nested subsidiary
3965     SConscript files.
3967   From Christoph Schulz:
3969   - Add support for $CONFIGUREDIR and $CONFIGURELOG variables to control
3970     the directory and logs for configuration tests.
3972   - Add support for a $INSTALLSTR variable.
3974   - Add support for $RANLIBCOM and $RANLIBCOMSTR variables (which fixes
3975     a bug when setting $ARCOMSTR).
3977   From Amir Szekely:
3979   - Add use of $CPPDEFINES to $RCCOM (resource file compilation) on MinGW.
3981   From Erick Tryzelaar:
3983   - Fix the error message when trying to report that a given option is
3984     not gettable/settable from an SConscript file.
3986   From Dobes Vandermeer:
3988   - Add support for SCC and other settings in Microsoft Visual
3989     Studio project and solution files:  $MSVS_PROJECT_BASE_PATH,
3990     $MSVS_PROJECT_GUID, $MSVS_SCC_AUX_PATH, $MSVS_SCC_LOCAL_PATH,
3991     $MSVS_SCC_PROJECT_NAME, $MSVS_SCC_PROVIDER,
3993   - Add support for using a $SCONS_HOME variable (imported from the
3994     external environment, or settable internally) to put a shortened
3995     SCons execution line in the Visual Studio project file.
3997   From David J. Van Maren:
3999   - Only filter common prefixes from source files names in Visual Studio
4000     project files if the prefix is a complete (sub)directory name.
4002   From Thad Ward:
4004   - If $MSVSVERSIONS is already set, don't overwrite it with
4005     information from the registry.
4009 RELEASE 0.96.91 - Thu, 08 Sep 2005 07:18:23 -0400
4011   NOTE:  This was a pre-release of 0.97 for testing purposes.
4013   From Chad Austin:
4015   - Have the environment store the toolpath and re-use it to find Tools
4016     modules during later Copy() or Tool() calls (unless overridden).
4018   - Normalize the directory path names in SConsignFile() database
4019     files so the same signature file can interoperate on Windows and
4020     non-Windows systems.
4022   - Make --debug=stacktrace print a stacktrace when a UserError is thrown.
4024   - Remove an old, erroneous cut-and-paste comment in Scanner/Dir.py.
4026   From Stanislav Baranov:
4028   - Make it possible to support with custom Alias (sub-)classes.
4030   - Allow Builders to take empty source lists when called.
4032   - Allow access to both TARGET and SOURCE in $*PATH expansions.
4034   - Allow SConscript files to modify BUILD_TARGETS.
4036   From Timothee Besset:
4038   - Add support for Objective C/C++ .m and .mm file suffixes (for
4039     Mac OS X).
4041   From Charles Crain
4043   - Fix the PharLap linkloc.py module to use target+source arguments
4044     when calling env.subst().
4046   From Bjorn Eriksson:
4048   - Fix an incorrect Command() keyword argument in the man page.
4050   - Add a $TEMPFILEPREFIX variable to control the prefix or flag used
4051     to pass a long-command-line-execution tempfile to a command.
4053   From Steven Knight:
4055   - Enhanced the SCons setup.py script to install man pages on
4056     UNIX/Linux systems.
4058   - Add support for an Options.FormatOptionHelpText() method that can
4059     be overridden to customize the format of Options help text.
4061   - Add a global name for the Entry class (which had already been
4062     documented).
4064   - Fix re-scanning of generated source files for implicit dependencies
4065     when the -j option is used.
4067   - Fix a dependency problem that caused $LIBS scans to not be added
4068     to all of the targets in a multiple-target builder call, which
4069     could cause out-of-order builds when the -j option is used.
4071   - Store the paths of source files and dependencies in the .sconsign*
4072     file(s) relative to the target's directory, not relative to the
4073     top-level SConstruct directory.  This starts to make it possible to
4074     subdivide the dependency tree arbitrarily by putting an SConstruct
4075     file in every directory and using content signatures.
4077   - Add support for $YACCHFILESUFFIX and $YACCHXXFILESUFFIX variables
4078     that accomodate parser generators that write header files to a
4079     different suffix than the hard-coded .hpp when the -d option is used.
4081   - The default behavior is now to store signature information in a
4082     single .sconsign.dblite file in the top-level SConstruct directory.
4083     The old behavior of a separate .sconsign file in each directory can
4084     be specified by calling SConsignFile(None).
4086   - Remove line number byte codes within the signature calculation
4087     of Python function actions, so that changing the location of an
4088     otherwise unmodified Python function doesn't cause rebuilds.
4090   - Fix AddPreAction() and AddPostAction() when an action has more than
4091     one target file:  attach the actions to the Executor, not the Node.
4093   - Allow the source directory of a BuildDir / build_dir to be outside
4094     of the top-level SConstruct directory tree.
4096   - Add a --debug=nomemoizer option that disables the Memoizer for clearer
4097     looks at the counts and profiles of the underlying function calls,
4098     not the Memoizer wrappers.
4100   - Print various --debug= stats even if we exit early (e.g. using -h).
4102   - Really only use the cached content signature value if the file
4103     is older than --max-drift, not just if --max-drift is set.
4105   - Remove support for conversion from old (pre 0.96) .sconsign formats.
4107   - Add support for a --diskcheck option to enable or disable various
4108     on-disk checks:  that File and Dir nodes match on-disk entries;
4109     whether an RCS file exists for a missing source file; whether an
4110     SCCS file exists for a missing source file.
4112   - Add a --raw argument to the sconsign script, so it can print a
4113     raw representation of each entry's NodeInfo dictionary.
4115   - Add the 'f90' and 'f95' tools to the list of Fortran compilers
4116     searched for by default.
4118   - Add the +Z option by default when compiling shared objects on
4119     HP-UX.
4121   From Chen Lee:
4123   - Handle Visual Studio project and solution files in Unicode.
4125   From Sanjoy Mahajan:
4127   - Fix a bad use of Copy() in an example in the man page, and a
4128     bad regular expression example in the man page and User's Guide.
4130   From Shannon Mann:
4132   - Have the Visual Studio project file(s) echo "Starting SCons" before
4133     executing SCons, mainly to work around a quote-stripping bug in
4134     (some versions of?) the Windows cmd command executor.
4136   From Georg Mischler:
4138   - Remove the space after the -o option when invoking the Borland
4139     BCC compiler; some versions apparently require that the file name
4140     argument be concatenated with the option.
4142   From Leanid Nazdrynau:
4144   - Fix the Java parser's handling of backslashes in strings.
4146   From Greg Noel:
4148   - Add construction variables to support frameworks on Mac OS X:
4149     $FRAMEWORKS, $FRAMEWORKPREFIX, $FRAMEWORKPATH, $FRAMEWORKPATHPREFIX.
4151   - Re-order link lines so the -o option always comes right after the
4152     command name.
4154   From Gary Oberbrunner:
4156   - Add support for Intel C++ beta 9.0 (both 32 and 64 bit versions).
4158   - Document the new $FRAMEWORK* variables for Mac OS X.
4160   From Karol Pietrzak:
4162   - Add $RPATH (-R) support to the Sun linker Tool (sunlink).
4164   - Add a description of env.subst() to the man page.
4166   From Chris Prince:
4168   - Look in the right directory, not always the local directory, for a
4169     same-named file or directory conflict on disk.
4171   - On Windows, preserve the external environment's %SYSTEMDRIVE%
4172     variable, too.
4174   From Craig Scott:
4176   - Have the Fortran module emitter look for Fortan modules to be created
4177     relative to $FORTRANMODDIR, not the top-level directory.
4179   - When saving Options to a file, run default values through the
4180     converter before comparing them with the set values.  This correctly
4181     suppresses Boolean Option values from getting written to the saved
4182     file when they're one of the many synonyms for a default True or
4183     False value.
4185   - Fix the Fortran Scanner's ability to handle a module being used
4186     in the same file in which it is defined.
4188   From Steve-o:
4190   - Add the -KPIC option by default when compiling shared objects on
4191     Solaris.
4193   - Change the default suffix for Solaris objects to .o, to conform to
4194     Sun WorkShop's expectations.  Change the profix to so_ so they can
4195     still be differentiated from static objects in the same directory.
4197   From Amir Szekely:
4199   - When calling the resource compiler on MinGW, add --include-dir and
4200     the source directory so it finds the source file.
4202   - Update EnsureSConsVersion() to support revision numbers.
4204   From Greg Ward:
4206   - Fix a misplaced line in the man page.
4210 RELEASE 0.96.90 - Tue, 15 Feb 2005 21:21:12 +0000
4212   NOTE:  This was a pre-release of 0.97 for testing purposes.
4214   From Anonymous:
4216   - Fix Java parsing to avoid erroneously identifying a new array
4217     of class instances as an anonymous inner class.
4219   - Fix a typo in the man page description of PathIsDirCreate.
4221   From Chad Austin:
4223   - Allow Help() to be called multiple times, appending to the help
4224     text each call.
4226   - Allow Tools found on a toolpath to import Python modules from
4227     their local directory.
4229   From Steve Christensen:
4231   - Handle exceptions from Python functions as build actions.
4233   - Add a set of canned PathOption validators:  PathExists (the default),
4234     PathIsFile, PathIsDir and PathIsDirCreate.
4236   From Matthew Doar:
4238   - Add support for .lex and .yacc file suffixes for Lex and Yacc files.
4240   From Eric Frias:
4242   - Huge performance improvement:  wrap the tuples representing an
4243     include path in an object, so that the time it takes to hash the
4244     path doesn't grow porportionally to the length of the path.
4246   From Gottfried Ganssauge:
4248   - Fix SCons on SuSE/AMD-64 Linux by having the wrapper script also
4249     check for the build engine in the parent directory of the Python
4250     library directory (/usr/lib64 instead of /usr/lib).
4252   From Stephen Kennedy:
4254   - Speed up writing the .sconsign file at the end of a run by only
4255     calling sync() once at the end, not after every entry.
4257   From Steven Knight:
4259   - When compiling with Microsoft Visual Studio, don't include the ATL and
4260     MFC directories in the default INCLUDE and LIB environment variables.
4262   - Remove the following deprecated features:  the ParseConfig()
4263     global function (deprecated in 0.93); the misspelled "validater"
4264     keyword to the Options.Add() method (deprecated in 0.91); the
4265     SetBuildSignatureType(), SetContentSignatureType(), SetJobs() and
4266     GetJobs() global functions (deprecated in 0.14).
4268   - Fix problems with corrupting the .sconsign.dblite file when
4269     interrupting builds by writing to a temporary file and renaming,
4270     not writing the file directly.
4272   - Fix a 0.96 regression where when running with -k, targets built from
4273     walking dependencies later on the command line would not realize
4274     that a dependency had failed an earlier build attempt, and would
4275     try to rebuild the dependent targets.
4277   - Change the final messages when using -k and errors occur from
4278     "{building,cleaning} terminated because of errors" to "done
4279     {building,cleaning} targets (errors occurred during {build,clean})."
4281   - Allow Configure.CheckFunc() to take an optional header argument
4282     (already supported by Conftest.py) to specify text at the top of
4283     the compiled test file.
4285   - Fix the --debug=explain output when a Python function action changed
4286     so it prints a meaningful string, not the binary representation of
4287     the function contents.
4289   - Allow a ListOption's default value(s) to be a Python list of specified
4290     values, not just a string containing a comma-separated list of names.
4292   - Add a ParseDepends() function that will parse up a list of explicit
4293     dependencies from a "make depend" style file.
4295   - Support the ability to change directory when executing an Action
4296     through "chdir" keyword arguments to Action and Builder creation
4297     and calls.
4299   - Fix handling of Action ojects (and other callables that don't match
4300     our calling arguments) in construction variable expansions.
4302   - On Win32, install scons.bat in the Python directory when installing
4303     from setup.py.  (The bdist_wininst installer was already doing this.)
4305   - Fix env.SConscript() when called with a list of SConscipt files.
4306     (The SConscript() global function already worked properly.)
4308   - Add a missing newline to the end of the --debug=explain "unknown
4309     reasons" message.
4311   - Enhance ParseConfig() to work properly for spaces in between the -I,
4312     -L and -l options and their arguments.
4314   - Packaging build fix:  Rebuild the files that are use to report the
4315     --version of SCons whenever the development version number changes.
4317   - Fix the ability to specify a target_factory of Dir() to a Builder,
4318     which the default create-a-directory Builder was interfering with.
4320   - Mark a directory as built if it's created as part of the preparation
4321     for another target, to avoid trying to build it again when it comes
4322     up in the target list.
4324   - Allow a function with the right calling signature to be put directly
4325     in an Environment's BUILDERS dictionary, making for easier creation
4326     and use of wrappers (pseudo-Builders) that call other Builders.
4328   - On Python 2.x, wrap lists of Nodes returned by Builders in a UserList
4329     object that adds a method that makes str() object return a string
4330     with all of the Nodes expanded to their path names.  (Builders under
4331     Python 1.5.2 still return lists to avoid TypeErrors when trying
4332     to extend() list, so Python 1.5.2 doesn't get pretty-printing of Node
4333     lists, but everything should still function.)
4335   - Allow Aliases to have actions that will be executed whenever
4336     any of the expanded Alias targets are out of date.
4338   - Fix expansion of env.Command() overrides within target and
4339     source file names.
4341   - Support easier customization of what's displayed by various default
4342     actions by adding lots of new construction variables: $ARCOMSTR,
4343     $ASCOMSTR, $ASPPCOMSTR, $BIBTEXCOMSTR, $BITKEEPERCOMSTR, $CCCOMSTR,
4344     $CVSCOMSTR, $CXXCOMSTR, $DCOMSTR, $DVIPDFCOMSTR, $F77COMSTR,
4345     $F90COMSTR, $F95COMSTR, $FORTRANCOMSTR, $GSCOMSTR, $JARCOMSTR,
4346     $JAVACCOMSTR, $JAVAHCOMSTR, $LATEXCOMSTR, $LEXCOMSTR, $LINKCOMSTR,
4347     $M4COMSTR, $MIDLCOMSTR, $P4COMSTR, $PCHCOMSTR, $PDFLATEXCOMSTR,
4348     $PDFTEXCOMSTR, $PSCOMSTR, $QT_MOCFROMCXXCOMSTR, $QT_MOCFROMHCOMSTR,
4349     $QT_UICCOMSTR, $RCCOMSTR, $REGSVRCOMSTR, $RCS_COCOMSTR, $RMICCOMSTR,
4350     $SCCSCOMSTR, $SHCCCOMSTR, $SHCXXCOMSTR, $SHF77COMSTR, $SHF90COMSTR,
4351     $SHF95COMSTR, $SHFORTRANCOMSTR, $SHLINKCOMSTR, $SWIGCOMSTR,
4352     $TARCOMSTR, $TEXCOMSTR, $YACCCOMSTR and $ZIPCOMSTR.
4354   - Add an optional "map" keyword argument to ListOption() that takes a
4355     dictionary to map user-specified values to legal values from the list
4356     (like EnumOption() already doee).
4358   - Add specific exceptions to try:-except: blocks without any listed,
4359     so that they won't catch and mask keyboard interrupts.
4361   - Make --debug={tree,dtree,stree} print something even when there's
4362     a build failure.
4364   - Fix how Scanners sort the found dependencies so that it doesn't
4365     matter whether the dependency file is in a Repository or not.
4366     This may cause recompilations upon upgrade to this version.
4368   - Make AlwaysBuild() work with Alias and Python value Nodes (making
4369     it much simpler to support aliases like "clean" that just invoke
4370     an arbitrary action).
4372   - Have env.ParseConfig() use AppendUnique() by default to suppress
4373     duplicate entries from multiple calls.  Add a "unique" keyword
4374     argument to allow the old behavior to be specified.
4376   - Allow the library modules imported by an SConscript file to get at
4377     all of the normally-available global functions and variables by saying
4378     "from SCons.Script import *".
4380   - Add a --debug=memoizer option to print Memoizer hit/mass statistics.
4382   - Allow more than one --debug= option to be set at a time.
4384   - Change --debug=count to report object counts before and after
4385     reading SConscript files and before and after building targets.
4387   - Change --debug=memory output to line up the numbers and to better
4388     match (more or less) the headers on the --debug=count columns.
4390   - Speed things up when there are lists of targets and/or sources by
4391     getting rid of some N^2 walks of the lists involved.
4393   - Cache evaluation of LazyActions so we don't create a new object
4394     for each invocation.
4396   - When scanning, don't create Nodes for include files that don't
4397     actually exist on disk.
4399   - Make supported global variables CScanner, DScanner, ProgramScanner and
4400     SourceFileScanner.  Make SourceFileScanner.add_scanner() a supported
4401     part of the public interface.  Keep the old SCons.Defaults.*Scan names
4402     around for a while longer since some people were already using them.
4404   - By default, don't scan directories for on-disk files.  Add a
4405     DirScanner global scanner that can be used in Builders or Command()
4406     calls that want source directory trees scanned for on-disk changes.
4407     Have the Tar() and Zip() Builders use the new DirScanner to preserve
4408     the behavior of rebuilding a .tar or .zip file if any file or
4409     directory under a source tree changes.  Add Command() support for
4410     a source_scanner keyword argument to Command() that can be set to
4411     DirScanner to get this behavior.
4413   - Documentation changes:  Explain that $CXXFLAGS contains $CCFLAGS
4414     by default.  Fix a bad target_factory example in the man page.
4415     Add appendices to the User's Guide to cover the available Tools,
4416     Builders and construction variables.  Comment out the build of
4417     the old Python 10 paper, which doesn't build on all systems and
4418     is old enough at this point that it probably isn't worth the
4419     effort to make it do so.
4421   From Wayne Lee:
4423   - Avoid "maximum recursion limit" errors when removing $(-$) pairs
4424     from long command lines.
4426   From Clive Levinson:
4428   - Make ParseConfig() recognize and add -mno-cygwin to $LINKFLAGS and
4429     $CCFLAGS, and -mwindows to $LINKFLAGS.
4431   From Michael McCracken:
4433   - Add a new "applelink" tool to handle the things like Frameworks and
4434     bundles that Apple has added to gcc for linking.
4436   - Use more appropriate default search lists of linkers, compilers and
4437     and other tools for the 'darwin' platform.
4439   - Add a LoadableModule Builder that builds a bundle on Mac OS X (Darwin)
4440     and a shared library on other systems.
4442   - Improve SWIG tests for use on Mac OS X (Darwin).
4444   From Elliot Murphy:
4446   - Enhance the tests to guarantee persistence of ListOption
4447     values in saved options files.
4449   - Supply the help text when -h is used with the -u, -U or -D options.
4451   From Christian Neeb:
4453   - Fix the Java parser's handling of string definitions to avoid ignoring
4454     subsequent code.
4456   From Han-Wen Nienhuys:
4458   - Optimize variable expansion by:  using the re.sub() method (when
4459     possible); not using "eval" for variables for which we can fetch the
4460     value directory; avoiding slowing substitution logic when there's no
4461     '$' in the string.
4463   From Gary Oberbrunner:
4465   - Add an Environment.Dump() method to print the contents of a
4466     construction environment.
4468   - Allow $LIBS (and similar variables) to contain explicit File Nodes.
4470   - Change ParseConfig to add the found library names directly to the
4471     $LIBS variable, instead of returning them.
4473   - Add ParseConfig() support for the -framework GNU linker option.
4475   - Add a PRINT_CMD_LINE_FUNC construction variable to allow people
4476     to filter (or log) command-line output.
4478   - Print an internal Python stack trace in response to an otherwise
4479     unexplained error when --debug=stacktrace is specified.
4481   - Add a --debug=findlibs option to print what's happening when
4482     the scanner is searching for libraries.
4484   - Allow Tool specifications to be passed a dictionary of keyword
4485     arguments.
4487   - Support an Options default value of None, in which case the variable
4488     will not be added to the construction environment unless it's set
4489     explicitly by the user or from an Options file.
4491   - Avoid copying __builtin__ values into a construction environment's
4492     dictionary when evaluating construction variables.
4494   - Add a new cross-platform intelc.py Tool that can detect and
4495     configure the Intel C++ v8 compiler on both Windows, where it's
4496     named icl, and Linux, where it's named icc.  It also checks that
4497     the directory specified in the Windows registry exists, and sets a
4498     new $INTEL_C_COMPILER_VERSION construction variable to identify the
4499     version being used.  (Niall Douglas contributed an early prototype
4500     of parts of this module.)
4502   - Fix the private Conftest._Have() function so it doesn't change
4503     non-alphanumeric characters to underscores.
4505   - Supply a better error message when a construction variable expansion
4506     has an unknown attribute.
4508   - Documentation changes:  Update the man page to describe use of
4509     filenames or Nodes in $LIBS.
4511   From Chris Pawling:
4513   - Have the linkloc tool use $MSVS_VERSION to select the Microsoft
4514     Visual Studio version to use.
4516   From Kevin Quick:
4518   - Fix the Builder name returned from ListBuilders and other instances
4519     of subclasses of the BuilderBase class.
4521   - Add Builders and construction variables to support rpcgen:
4522     RPCGenClient(), RPCGenHeader(), RPCGenService(), RPCGenXDR(),
4523     $RPCGEN, $RPCGENFLAGS, $RPCGENCLIENTFLAGS, $RPCGENHEADERFLAGS,
4524     $RPCGENSERVICEFLAGS, $RPCGENXDRFLAGS.
4526   - Update the man page to document that prefix and suffix Builder
4527     keyword arguments can be strings, callables or dictionaries.
4529   - Provide more info in the error message when a user tries to build
4530     a target multiple ways.
4532   - Fix Delete() when a file doesn't exist and must_exist=1.  (We were
4533     unintentionally dependent on a bug in versions of the Python shutil.py
4534     module prior to Python 2.3, which would generate an exception for
4535     a nonexistent file even when ignore_errors was set.)
4537   - Only replace a Node's builder with a non-null source builder.
4539   - Fix a stack trace when a suffix selection dictionary is passed
4540     an empty source file list.
4542   - Allow optional names to be attached to Builders, for default
4543     Builders that don't get attached to construction environments.
4545   - Fix problems with Parallel Task Exception handling.
4547   - Build targets in an associated BuildDir even if there are targets
4548     or subdirectories locally in the source directory.
4550   - If a FunctionAction has a callable class as its underlying Python
4551     function, use its strfunction() method (if any) to display the
4552     action.
4554   - Fix handling when BuildDir() exists but is unwriteable.  Add
4555     "Stop." to those error messages for consistency.
4557   - Catch incidents of bad builder creation (without an action) and
4558     supply meaningful error messages.
4560   - Fix handling of src_suffix values that aren't extensions (don't
4561     begin with a '.').
4563   - Don't retrieve files from a CacheDir, but report what would happen,
4564     when the -n option is used.
4566   - Use the source_scanner from the target Node, not the source node
4567     itself.
4569   - Internal Scanners fixes:  Make sure Scanners are only passed Nodes.
4570     Fix how a Scanner.Selector called its base class initialization.
4571     Make comparisons of Scanner objects more robust.  Add a name to
4572     an internal default ObjSourceScanner.
4574   - Add a deprecated warning for use of the old "scanner" keyword argument
4575     to Builder creation.
4577   - Improve the --debug=explain message when the build action changes.
4579   - Test enhancements in SourceCode.py, option-n.py, midl.py.  Better
4580     Command() and Scanner test coverage.  Improved test infrastructure
4581     for -c output.
4583   - Refactor the interface between Action and Executor objects to treat
4584     Actions atomically.
4586   - The --debug=presub option will now report the pre-substitution
4587     each action seprately, instead of reporting the entire list before
4588     executing the actions one by one.
4590   - The --debug=explain option explaining a changed action will now
4591     (more correctly) show pre-substitution action strings, instead of
4592     the commands with substituted file names.
4594   - A Node (file) will now be rebuilt if its PreAction or PostAction
4595     actions change.
4597   - Python Function actions now have their calling signature (target,
4598     source, env) reported correctly when displayed.
4600   - Fix BuildDir()/build_dir handling when the build_dir is underneath
4601     the source directory and trying to use entries from the build_dir
4602     as sources for other targets in the build-dir.
4604   - Fix hard-coding of JDK path names in various Java tests.
4606   - Handle Python stack traces consistently (stop at the SConscript stack
4607     frame, by default) even if the Python source code isn't available.
4609   - Improve the performance of the --debug={tree,dtree} options.
4611   - Add --debug=objects logging of creation of OverrideWarner,
4612     EnvironmentCopy and EnvironmentOverride objects.
4614   - Fix command-line expansion of Python Value Nodes.
4616   - Internal cleanups:  Remove an unnecessary scan argument.  Associate
4617     Scanners only with Builders, not nodes.  Apply overrides once when
4618     a Builder is called, not in multiple places.  Cache results from the
4619     Node.FS.get_suffix() and Node.get_build_env() methods.  Use the Python
4620     md5 modules' hexdigest() method, if there is one.  Have Taskmaster
4621     call get_stat() once for each Node and re-use the value instead of
4622     calling it each time it needs the value.  Have Node.depends_on()
4623     re-use the list from the children() method instead of calling it
4624     multiple times.
4626   - Use the correct scanner if the same source file is used for targets in
4627     two different environments with the same path but different scanners.
4629   - Collect logic for caching values in memory in a Memoizer class,
4630     which cleans up a lot of special-case code in various methods and
4631     caches additional values to speed up most configurations.
4633   - Add a PathAccept validator to the list of new canned PathOption
4634     validators.
4636   From Jeff Squyres:
4638   - Documentation changes:  Use $CPPDEFINES instead of $CCFLAGS in man
4639     page examples.
4641   From Levi Stephen:
4643   - Allow $JARCHDIR to be expanded to other construction variables.
4645   From Christoph Wiedemann:
4647   - Add an Environment.SetDefault() method that only sets values if
4648     they aren't already set.
4650   - Have the qt.py Tool not override variables already set by the user.
4652   - Add separate $QT_BINPATH, $QT_CPPPATH and $QT_LIBPATH variables
4653     so these can be set individually, instead of being hard-wired
4654     relative to $QTDIR.
4656   - The %TEMP% and %TMP% external environment variables are now propagated
4657     automatically to the command execution environment on Windows systems.
4659   - A new --config= command-line option allows explicit control of
4660     of when the Configure() tests are run:  --config=force forces all
4661     checks to be run, --config=cache uses all previously cached values,
4662     --config=auto (the default) runs tests only when dependency analysis
4663     determines it's necessary.
4665   - The Configure() subsystem can now write a config.h file with values
4666     like HAVE_STDIO_H, HAVE_LIBM, etc.
4668   - The Configure() subsystem now executes its checks silently when the
4669     -Q option is specified.
4671   - The Configure() subsystem now reports if a test result is being
4672     taken from cache, and prints the standard output and error output
4673     of tests even when cached.
4675   - Configure() test results are now reported as "yes" or "no" instead of
4676     "ok" or "failed."
4678   - Fixed traceback printing when calling the env.Configure() method
4679     instead of the Configure() global function.
4681   - The Configure() subsystem now caches build failures in a .sconsign
4682     file in the subdirectory, not a .cache file.  This may cause
4683     tests to be re-executed the first time after you install 0.97.
4685   - Additional significant internal cleanups in the Configure() subsystem
4686     and its tests.
4688   - Have the Qt Builder make uic-generated files dependent on the .ui.h
4689     file, if one exists.
4691   - Add a test to make sure that SCons source code does not contain
4692     try:-except: blocks that catch all errors, which potentially catch
4693     and mask keyboard interrupts.
4695   - Fix us of TargetSignatures('content') with the SConf subsystem.
4697   From Russell Yanofsky:
4699   - Add support for the Metrowerks Codewarrior compiler and linker
4700     (mwcc and mwld).
4704 RELEASE 0.96.1 - Mon, 23 Aug 2004 12:55:50 +0000
4706   From Craig Bachelor:
4708   - Handle white space in the executable Python path name within in MSVS
4709     project files by quoting the path.
4711   - Correct the format of a GUID string in a solution (.dsw) file so
4712     MSVS can correctly "build enable" a project.
4714   From Steven Knight:
4716   - Add a must_exist flag to Delete() to let the user control whether
4717     it's an error if the specified entry doesn't exist.  The default
4718     behavior is now to silently do nothing if it doesn't exist.
4720   - Package up the new Platform/darwin.py, mistakenly left out of 0.96.
4722   - Make the scons.bat REM statements into @REM so they aren't printed.
4724   - Make the SCons packaging SConscript files platform independent.
4726   From Anthony Roach:
4728   - Fix scanning of pre-compiled header (.pch) files for #includes,
4729     broken in 0.96.
4733 RELEASE 0.96 - Wed, 18 Aug 2004 13:36:40 +0000
4735   From Chad Austin:
4737   - Make the CacheDir() directory if it doesn't already exist.
4739   - Allow construction variable substitutions in $LIBS specifications.
4741   - Allow the emitter argument to a Builder() to be or expand to a list
4742     of emitter functions, which will be called in sequence.
4744   - Suppress null values in construction variables like $LIBS that use
4745     the internal _concat() function.
4747   - Remove .dll files from the construction variables searched for
4748     libraries that can be fed to Win32 compilers.
4750   From Chad Austin and Christoph Wiedemann:
4752   - Add support for a $RPATH variable to supply a list of directories
4753     to search for shared libraries when linking a program.  Used by
4754     the GNU and IRIX linkers (gnulink and sgilink).
4756   From Charles Crain:
4758   - Restore the ability to do construction variable substitutions in all
4759     kinds of *PATH variables, even when the substitution returns a Node
4760     or other object.
4762   From Tom Epperly:
4764   - Allow the Java() Builder to take more than one source directory.
4766   From Ralf W. Grosse-Kunstleve:
4768   - Have SConsignFile() use, by default, a custom "dblite.py" that we can
4769     control and guarantee to work on all Python versions (or nearly so).
4771   From Jonathan Gurley:
4773   - Add support for the newer "ifort" versions of the Intel Fortran
4774     Compiler for Linux.
4776   From Bob Halley:
4778   - Make the new *FLAGS variable type work with copied Environments.
4780   From Chris Hoeppler:
4782   - Initialize the name of a Scanner.Classic scanner correctly.
4784   From James Juhasz:
4786   - Add support for the .dylib shared library suffix and the -dynamiclib
4787     linker option on Mac OS X.
4789   From Steven Knight:
4791   - Add an Execute() method for executing actions directly.
4793   - Support passing environment override keyword arguments to Command().
4795   - Fix use of $MSVS_IGNORE_IDE_PATHS, which was broken when we added
4796     support for $MSVS_USE_MFC_DIRS last release.
4798   - Make env.Append() and env.Prepend() act like the underlying Python
4799     behavior when the variable being appended to is a UserList object.
4801   - Fix a regression that prevented the Command() global function in
4802     0.95 from working with command-line strings as actions.
4804   - Fix checking out a file from a source code management system when
4805     the env.SourceCode() method was called with an individual file name
4806     or node, not a directory name or node.
4808   - Enhance the Task.make_ready() method to create a list of the
4809     out-of-date Nodes for the task for use by the wrapping interface.
4811   - Allow Scanners to pull the list of suffixes from the construction
4812     environment when the "skeys" keyword argument is a string containing
4813     a construction variable to be expanded.
4815   - Support new $CPPSUFFIXES, $DSUFFIXES $FORTRANSUFFIXES, and
4816     $IDLSUFFIXES.  construction variables that contain the default list
4817     of suffixes to be scanned by a given type of scanner, allowing these
4818     suffix lists to be easily added to or overridden.
4820   - Speed up Node creation when calling a Builder by comparing whether two
4821     Environments are the same object, not if their underlying dictionaries
4822     are equivalent.
4824   - Add a --debug=explain option that reports the reason(s) why SCons
4825     thinks it must rebuild something.
4827   - Add support for functions that return platform-independent Actions
4828     to Chmod(), Copy(), Delete(), Mkdir(), Move() and Touch() files
4829     and/or directories.  Like any other Actions, the returned Action
4830     object may be executed directly using the Execute() global function
4831     or env.Execute() environment method, or may be used as a Builder
4832     action or in an env.Command() action list.
4834   - Add support for the strfunction argument to all types of Actions:
4835     CommandAction, ListAction, and CommandGeneratorAction.
4837   - Speed up turning file system Nodes into strings by caching the
4838     values after we're finished reading the SConscript files.
4840   - Have ParseConfig() recognize and supporting adding the -Wa, -Wl,
4841     and -Wp, flags to ASFLAGS, LINKFLAGS and CPPFLAGS, respectively.
4843   - Change the .sconsign format and the checks for whether a Node is
4844     up-to-date to make dependency checks more efficient and correct.
4846   - Add wrapper Actions to SCons.Defaults for $ASCOM, $ASPPCOM, $LINKCOM,
4847     $SHLINKCOM, $ARCOM, $LEXCOM and $YACCCOM.  This makes it possible
4848     to replace the default print behavior with a custom strfunction()
4849     for each of these.
4851   - When a Node has been built, don't walk the whole tree back to delete
4852     the parents's implicit dependencies, let returning up the normal
4853     Taskmaster descent take care of it for us.
4855   - Add documented support for separate target_scanner and source_scanner
4856     arguments to Builder creation, which allows different scanners to
4857     be applied to source files
4859   - Don't re-install or (re-generate) .h files when a subsidiary #included
4860     .h file changes.  This eliminates incorrect circular dependencies
4861     with .h files generated from other source files.
4863   - Slim down the internal Sig.Calculator class by eliminating methods
4864     whose functionality is now covered by Node methods.
4866   - Document use of the target_factory and source_factory keyword
4867     arguments when creating Builder objects.  Enhance Dir Nodes so that
4868     they can be created with user-specified Builder objects.
4870   - Don't blow up with stack trace when the external $PATH environment
4871     variable isn't set.
4873   - Make Builder calls return lists all the time, even if there's only
4874     one target.  This keeps things consistent and easier to program to
4875     across platforms.
4877   - Add a Flatten() function to make it easier to deal with the Builders
4878     all returning lists of targets, not individual targets.
4880   - Performance optimizations in Node.FS.__doLookup().
4882   - Man page fixes:  formatting typos, misspellings, bad example.
4884   - User's Guide fixes: Fix the signatures of the various example
4885     *Options() calls.  Triple-quote properly a multi-line Split example.
4887   - User's Guide additions:  Chapter describing File and Directory
4888     Nodes.  Section describing declarative nature of SCons functions in
4889     SConscript files.  Better organization and clarification of points
4890     raised by Robert P. J. Day.  Chapter describing SConf (Autoconf-like)
4891     functionality.  Chapter describing how to install Python and
4892     SCons.  Chapter describing Java builds.
4894   From Chris Murray:
4896   - Add a .win32 attribute to force file names to expand with
4897     Windows backslash path separators.
4899   - Fix escaping file names on command lines when the expansion is
4900     concatenated with another string.
4902   - Add support for Fortran 90 and Fortran 95.  This adds $FORTRAN*
4903     variables that specify a default compiler, command-line, flags,
4904     etc. for all Fortran versions, plus separate $F90* and $F95*
4905     variables for when different compilers/flags/etc. must be specified
4906     for different Fortran versions.
4908   - Have individual tools that create libraries override the default
4909     $LIBPREFIX and $LIBSUFFIX values set by the platform.  This makes
4910     it easier to use Microsoft Visual Studio tools on a CygWin platform.
4912   From Gary Oberbrunner:
4914   - Add a --debug=presub option to print actions prior to substitution.
4916   - Add a warning upon use of the override keywords "targets" and
4917     "sources" when calling Builders.  These are usually mistakes which
4918     are otherwise silently (and confusingly) turned into construction
4919     variable overrides.
4921   - Try to find the ICL license file path name in the external environment
4922     and the registry before resorting to the hard-coded path name.
4924   - Add support for fetching command-line keyword=value arguments in
4925     order from an ARGLIST list.
4927   - Avoid stack traces when trying to read dangling symlinks.
4929   - Treat file "extensions" that only contain digits as part of the
4930     file basename.  This supports version numbers as part of shared
4931     library names, for example.
4933   - Avoid problems when there are null entries (None or '') in tool
4934     lists or CPPPATH.
4936   - Add an example and explanation of how to use "tools = ['default', ..."
4937     when creating a construction environment.
4939   - Add a section describing File and Directory Nodes and some of their
4940     attributes and methods.
4942   - Have ParseConfig() add a returned -pthread flag to both $CCFLAGS
4943     and $LINKFLAGS.
4945   - Fix some test portability issues on Mac OS X (darwin).
4947   From Simon Perkins:
4949   - Fix a bug introduced in building shared libraries under MinGW.
4951   From Kevin Quick:
4953   - Handling SCons exceptions according to Pythonic standards.
4955   - Fix test/chained-build.py on systems that execute within one second.
4957   - Fix tests on systems where 'ar' warns about archive creation.
4959   From Anthony Roach:
4961   - Fix use of the --implicit-cache option with timestamp signatures.
4963   - If Visual Studio is installed, assume the C/C++ compiler, the linker
4964     and the MIDL compiler that comes with it are available, too.
4966   - Better error messages when evaluating a construction variable
4967     expansion yields a Python syntax error.
4969   - Change the generation of PDB files when using Visual Studio from
4970     compile time to link time.
4972   From sam th:
4974   - Allow SConf.CheckLib() to search a list of libraries, like the
4975     Autoconf AC_SEARCH_LIBS macro.
4977   - Allow the env.WhereIs() method to take a "reject" argument to
4978     let it weed out specific path names.
4980   From Christoph Wiedemann:
4982   - Add new Moc() and Uic() Builders for more explicit control over
4983     Qt builds, plus new construction variables to control them:
4984     $QT_AUTOSCAN, $QT_DEBUG, $QT_MOCCXXPREFIX, $QT_MOCCXXSUFFIX,
4985     $QT_MOCHPREFIX, $QT_MOCHSUFFIX, $QT_UICDECLPREFIX, $QT_UICDECLSUFFIX,
4986     $QT_UICIMPLPREFIX, $QT_UICIMPLSUFFIX and $QT_UISUFFIX.
4988   - Add a new single_source keyword argument for Builders that enforces
4989     a single source file on calls to the Builder.
4993 RELEASE 0.95 - Mon, 08 Mar 2004 06:43:20 -0600
4995   From Chad Austin:
4997   - Replace print statements with calls to sys.stdout.write() so output
4998     lines stay together when -j is used.
5000   - Add portability fixes for a number of tests.
5002   - Accomodate the fact that Cygwin's os.path.normcase() lies about
5003     the underlying system being case-sensitive.
5005   - Fix an incorrect _concat() call in the $RCINCFLAGS definition for
5006     the mingw Tool.
5008   - Fix a problem with the msvc tool with Python versions prior to 2.3.
5010   - Add support for a "toolpath" Tool() and Environment keyword that
5011     allows Tool modules to be found in specified local directories.
5013   - Work around Cygwin Python's silly fiction that it's using a
5014     case-sensitive file system.
5016   - More robust handling of data in VCComponents.dat.
5018   - If the "env" command is available, spawn commands with the more
5019     general "env -" instead of "env -i".
5021   From Kerim Borchaev:
5023   - Fix a typo in a msvc.py's registry lookup:  "VCComponents.dat", not
5024     "VSComponents.dat".
5026   From Chris Burghart:
5028   - Fix the ability to save/restore a PackageOption to a file.
5030   From Steve Christensen:
5032   - Update the MSVS .NET and MSVC 6.0/7.0 path detection.
5034   From David M. Cooke:
5036   - Make the Fortran scanner case-insensitive for the INCLUDE string.
5038   From Charles Crain:
5040   - If no version of MSVC is detected but the tool is specified,
5041     use the MSVC 6.0 paths by default.
5043   - Ignore any "6.1" version of MSVC found in the registry; this is a
5044     phony version number (created by later service packs?) and would
5045     throw off the logic if the user had any non-default paths configure.
5047   - Correctly detect if the user has independently configured the MSVC
5048     "include," "lib" or "path" in the registry and use the appropriate
5049     values.  Previously, SCons would only use the values if all three
5050     were set in the registry.
5052   - Make sure side-effect nodes are prepare()d before building their
5053     corresponding target.
5055   - Preserve the ability to call BuildDir() multiple times with the
5056     same target and source directory arguments.
5058   From Andy Friesen:
5060   - Add support for the Digital Mars "D" programming language.
5062   From Scott Lystig Fritchie:
5064   - Fix the ability to use a custom _concat() function in the
5065     construction environment when calling _stripixes().
5067   - Make the message about ignoring a missing SConscript file into a
5068     suppressable Warning, not a hard-coded sys.stderr.write().
5070   - If a builder can be called multiple times for a target (because
5071     the sources and overrides are identical, or it's a builder with the
5072     "multi" flag set), allow the builder to be called through multiple
5073     environments so long as the builders have the same signature for
5074     the environments in questions (that is, they're the same action).
5076   From Bob Halley:
5078   - When multiple targets are built by a single action, retrieve all
5079     of them from cache, not just the first target, and exec the build
5080     command if any of the targets isn't present in the cache.
5082   From Zephaniah Hull:
5084   - Fix command-line ARGUMENTS with multiple = in them.
5086   From Steven Knight:
5088   - Fix EnsureSConsVersion() so it checks against the SCons version,
5089     not the Python version, on Pythons with sys.version_info.
5091   - Don't swallow the AttributeError when someone uses an expansion like
5092     $TARGET.bak, so we can supply a more informative error message.
5094   - Fix an odd double-quote escape sequence in the man page.
5096   - Fix looking up a naked drive letter as a directory (Dir('C:')).
5098   - Support using File nodes in the LIBS construction variable.
5100   - Allow the LIBS construction variable to be a single string or File
5101     node, not a list, when only one library is needed.
5103   - Fix typos in the man page:  JAVACHDIR => JARCHDIR; add "for_signature"
5104     to the __call__() example in the "Variable Substitution" section.
5106   - Correct error message spellings of "non-existant" to "non-existent."
5108   - When scanning for libraries to link with, don't append $LIBPREFIXES
5109     or $LIBSUFFIXES values to the $LIBS values if they're already present.
5111   - Add a ZIPCOMPRESSION construction variable to control whether the
5112     internal Python action for the Zip Builder compresses the file or
5113     not.  The default value is zipfile.ZIP_DEFLATED, which generates
5114     a compressed file.
5116   - Refactor construction variable expansion to support recursive
5117     expansion of variables (e.g. CCFLAGS = "$CCFLAGS -g") without going
5118     into an infinite loop.  Support this in all construction variable
5119     overrides, as well as when copying Environments.
5121   - Fix calling Configure() from more than one subsidiary SConscript file.
5123   - Fix the env.Action() method so it returns the correct type of
5124     Action for its argument(s).
5126   - Fix specifying .class files as input to JavaH with the .class suffix
5127     when they weren't generated using the Java Builder.
5129   - Make the check for whether all of the objects going into a
5130     SharedLibrary() are shared work even if the object was built in a
5131     previous run.
5133   - Supply meaningful error messages, not stack traces, if we try to add
5134     a non-Node as a source, dependency, or ignored dependency of a Node.
5136   - Generate MSVS Project files that re-invoke SCons properly regardless
5137     of whether the file was built via scons.bat or scons.py.
5138     (Thanks to Niall Douglas for contributing code and testing.)
5140   - Fix TestCmd.py, runtest.py and specific tests to accomodate being
5141     run from directories whose paths include white space.
5143   - Provide a more useful error message if a construction variable
5144     expansion contains a syntax error during evaluation.
5146   - Fix transparent checkout of implicit dependency files from SCCS
5147     and RCS.
5149   - Added new --debug=count, --debug=memory and --debug=objects options.
5150     --debug=count and --debug=objects only print anything when run
5151     under Python 2.1 or later.
5153   - Deprecate the "overrides" keyword argument to Builder() creation
5154     in favor of using keyword argument values directly (like we do
5155     for builder execution and the like).
5157   - Always use the Builder overrides in substitutions, not just if
5158     there isn't a target-specific environment.
5160   - Add new "rsrcpath" and "rsrcdir" and attributes to $TARGET/$SOURCE,
5161     so Builder command lines can find things in Repository source
5162     directories when using BuildDir.
5164   - Fix the M4 Builder so that it chdirs to the Repository directory
5165     when the input file is in the source directory of a BuildDir.
5167   - Save memory at build time by allowing Nodes to delete their build
5168     environments after they've been built.
5170   - Add AppendUnique() and PrependUnique() Environment methods, which
5171     add values to construction variables like Append() and Prepend()
5172     do, but suppress any duplicate elements in the list.
5174   - Allow the 'qt' tool to still be used successfully from a copied
5175     Environment.  The include and library directories previously ended up
5176     having the same string re-appended to the end, yielding an incorrect
5177     path name.
5179   - Supply a more descriptive error message when the source for a target
5180     can't be found.
5182   - Initialize all *FLAGS variables with objects do the right thing with
5183     appending flags as strings or lists.
5185   - Make things like ${TARGET.dir} work in *PATH construction variables.
5187   - Allow a $MSVS_USE_MFC_DIRS construction variable to control whether
5188     ATL and MFC directories are included in the default INCLUDE and
5189     LIB paths.
5191   - Document the dbm_module argument to the SConsignFile() function.
5193   From Vincent Risi:
5195   - Add support for the bcc32, ilink32 and tlib Borland tools.
5197   From Anthony Roach:
5199   - Supply an error message if the user tries to configure a BuildDir
5200     for a directory that already has one.
5202   - Remove documentation of the still-unimplemented -e option.
5204   - Add -H help text listing the legal --debug values.
5206   - Don't choke if a construction variable is a non-string value.
5208   - Build Type Libraries in the target directory, not the source
5209     directory.
5211   - Add an appendix to the User's Guide showing how to accomplish
5212     various common tasks in Python.
5214   From Greg Spencer:
5216   - Add support for Microsoft Visual Studio 2003 (version 7.1).
5218   - Evaluate $MSVSPROJECTSUFFIX and $MSVSSOLUTIONSUFFIX when the Builder
5219     is invoked, not when the tool is initialized.
5221   From Christoph Wiedemann:
5223   - When compiling Qt, make sure the moc_*.cc files are compiled using
5224     the flags from the environment used to specify the target, not
5225     the environment that first has the Qt Builders attached.
5229 RELEASE 0.94 - Fri, 07 Nov 2003 05:29:48 -0600
5231   From Hartmut Goebel:
5233   - Add several new types of canned functions to help create options:
5234     BoolOption(), EnumOption(), ListOption(), PackageOption(),
5235     PathOption().
5237   From Steven Knight:
5239   - Fix use of CPPDEFINES with C++ source files.
5241   - Fix env.Append() when the operand is an object with a __cmp__()
5242     method (like a Scanner instance).
5244   - Fix subclassing the Environment and Scanner classes.
5246   - Add BUILD_TARGETS, COMMAND_LINE_TARGETS and DEFAULT_TARGETS variables.
5248   From Steve Leblanc:
5250   - SGI fixes:  Fix C++ compilation, add a separate Tool/sgic++.py module.
5252   From Gary Oberbrunner:
5254   - Fix how the man page un-indents after examples in some browsers.
5256   From Vincent Risi:
5258   - Fix the C and C++ tool specifications for AIX.
5262 RELEASE 0.93 - Thu, 23 Oct 2003 07:26:55 -0500
5264   From J.T. Conklin:
5266   - On POSIX, execute commands with the more modern os.spawnvpe()
5267     function, if it's available.
5269   - Scan .S, .spp and .SPP files for C preprocessor dependencies.
5271   - Refactor the Job.Parallel() class to use a thread pool without a
5272     condition variable.  This improves parallel build performance and
5273     handles keyboard interrupts properly when -j is used.
5275   From Charles Crain:
5277   - Add support for a JARCHDIR variable to control changing to a
5278     directory using the jar -C option.
5280   - Add support for detecting Java manifest files when using jar,
5281     and specifying them using the jar m flag.
5283   - Fix some Python 2.2 specific things in various tool modules.
5285   - Support directories as build sources, so that a rebuild of a target
5286     can be triggered if anything underneath the directory changes.
5288   - Have the scons.bat and scons.py files look for the SCons modules
5289     in site-packages as well.
5291   From Christian Engel:
5293   - Support more flexible inclusion of separate C and C++ compilers.
5295   - Use package management tools on AIX and Solaris to find where
5296     the comilers are installed, and what version they are.
5298   - Add support for CCVERSION and CXXVERSION variables for a number
5299     of C and C++ compilers.
5301   From Sergey Fogel:
5303   - Add test cases for the new capabilities to run bibtex and to rerun
5304     latex as needed.
5306   From Ralf W. Grosse-Kunstleve:
5308   - Accomodate anydbm modules that don't have a sync() method.
5310   - Allow SConsignFile() to take an argument specifying the DBM
5311     module to be used.
5313   From Stephen Kennedy:
5315   - Add support for a configurable global .sconsign.dbm file which
5316     can be used to avoid cluttering each directory with an individual
5317     .sconsign file.
5319   From John Johnson:
5321   - Fix (re-)scanning of dependencies in generated or installed
5322     header files.
5324   From Steven Knight:
5326   - The -Q option suppressed too many messages; fix it so that it only
5327     suppresses the Reading/Building messages.
5329   - Support #include when there's no space before the opening quote
5330     or angle bracket.
5332   - Accomodate alphanumeric version strings in EnsurePythonVersion().
5334   - Support arbitrary expansion of construction variables within
5335     file and directory arguments to Builder calls and Environment methods.
5337   - Add Environment-method versions of the following global functions:
5338     Action(), AddPostAction(), AddPreAction(), Alias(), Builder(),
5339     BuildDir(), CacheDir(), Clean(), Configure(), Default(),
5340     EnsurePythonVersion(), EnsureSConsVersion(), Environment(),
5341     Exit(), Export(), FindFile(), GetBuildPath(), GetOption(), Help(),
5342     Import(), Literal(), Local(), Platform(), Repository(), Scanner(),
5343     SConscriptChdir(), SConsignFile(), SetOption(), SourceSignatures(),
5344     Split(), TargetSignatures(), Tool(), Value().
5346   - Add the following global functions that correspond to the same-named
5347     Environment methods:  AlwaysBuild(), Command(), Depends(), Ignore(),
5348     Install(), InstallAs(), Precious(), SideEffect() and SourceCode().
5350   - Add the following global functions that correspond to the default
5351     Builder methods supported by SCons: CFile(), CXXFile(), DVI(), Jar(),
5352     Java(), JavaH(), Library(), M4(), MSVSProject(), Object(), PCH(),
5353     PDF(), PostScript(), Program(), RES(), RMIC(), SharedLibrary(),
5354     SharedObject(), StaticLibrary(), StaticObject(), Tar(), TypeLibrary()
5355     and Zip().
5357   - Rearrange the man page to show construction environment methods and
5358     global functions in the same list, and to explain the difference.
5360   - Alphabetize the explanations of the builder methods in the man page.
5362   - Rename the Environment.Environment class to Enviroment.Base.
5363     Allow the wrapping interface to extend an Environment by using its own
5364     subclass of Environment.Base and setting a new Environment.Environment
5365     variable as the calling entry point.
5367   - Deprecate the ParseConfig() global function in favor of a same-named
5368     construction environment method.
5370   - Allow the Environment.WhereIs() method to take explicit path and
5371     pathext arguments (like the underlying SCons.Util.WhereIs() function).
5373   - Remove the long-obsolete {Get,Set}CommandHandler() functions.
5375   - Enhance env.Append() to suppress null values when appropriate.
5377   - Fix ParseConfig() so it works regardless of initial construction
5378     variable values.
5380     Extend CheckHeader(), CheckCHeader(), CheckCXXHeader() and
5381     CheckLibWithHeader() to accept a list of header files that will be
5382     #included in the test.  The last one in the list is assumed to be
5383     the one being checked for.  (Prototype code contributed by Gerard
5384     Patel and Niall Douglas).
5386   - Supply a warning when -j is used and threading isn't built in to
5387     the current version of Python.
5389   - First release of the User's Guide (finally, and despite a lot
5390     of things still missing from it...).
5392   From Clark McGrew:
5394   - Generalize the action for .tex files so that it will decide whether
5395     a file is TeX or LaTeX, check the .aux output to decide if it should
5396     run bibtex, and check the .log output to re-run LaTeX if needed.
5398   From Bram Moolenaar:
5400   - Split the non-SCons-specific functionality from SConf.py to a new,
5401     re-usable Conftest.py module.
5403   From Gary Oberbrunner:
5405   - Allow a directory to be the target or source or dependency of a
5406     Depends(), Ignore(), Precious() or SideEffect() call.
5408   From Gerard Patel:
5410   - Use the %{_mandir} macro when building our RPM package.
5412   From Marko Rauhamaa:
5414   - Have the closing message say "...terminated because of errors" if
5415     there were any.
5417   From Anthony Roach:
5419   - On Win32 systems, only use "rm" to delete files if Cygwin is being
5420     used.   ("rm" doesn't understand Win32-format path names.)
5422   From Christoph Wiedemann:
5424   - Fix test/SWIG.py to find the Python include directory in all cases.
5426   - Fix a bug in detection of Qt installed on the local system.
5428   - Support returning Python 2.3 BooleanType values from Configure checks.
5430   - Provide an error message if someone mistakenly tries to call a
5431     Configure check from within a Builder function.
5433   - Support calling a Builder when a Configure context is still open.
5435   - Handle interrupts better by eliminating all try:-except: blocks
5436     which caught any and all exceptions, including KeyboardInterrupt.
5438   - Add a --duplicate= option to control how files are duplicated.
5442 RELEASE 0.92 - Wed, 20 Aug 2003 03:45:28 -0500
5444   From Charles Crain and Gary Oberbrunner:
5446   - Fix Tool import problems with the Intel and PharLap linkers.
5448   From Steven Knight
5450   - Refactor the DictCmdGenerator class to be a Selector subclass.
5452   - Allow the DefaultEnvironment() function to take arguments and pass
5453     them to instantiation of the default construction environment.
5455   - Update the Debian package so it uses Python 2.2 and more closely
5456     resembles the currently official Debian packaging info.
5458   From Gerard Patel
5460   - When the yacc -d flag is used, take the .h file base name from the
5461     target .c file, not the source (matching what yacc does).
5465 RELEASE 0.91 - Thu, 14 Aug 2003 13:00:44 -0500
5467   From Chad Austin:
5469   - Support specifying a list of tools when calling Environment.Copy().
5471   - Give a Value Nodes a timestamp of the system time when they're
5472     created, so they'll work when using timestamp-based signatures.
5474   - Add a DefaultEnvironment() function that only creates a default
5475     environment on-demand (for fetching source files, e.g.).
5477   - Portability fix for test/M4.py.
5479   From Steven Knight:
5481   - Tighten up the scons -H help output.
5483   - When the input yacc file ends in .yy and the -d flag is specified,
5484     recognize that a .hpp file (not a .h file) will be created.
5486   - Make builder prefixes work correctly when deducing a target
5487     from a source file name in another directory.
5489   - Documentation fixes: typo in the man page; explain up-front about
5490     not propagating the external environment.
5492   - Use "cvs co -d" instead of "cvs co -p >" when checking out something
5493     from CVS with a specified module name.  This avoids zero-length
5494     files when there is a checkout error.
5496   - Add an "sconsign" script to print the contents of .sconsign files.
5498   - Speed up maintaining the various lists of Node children by using
5499     dictionaries to avoid "x in list" searches.
5501   - Cache the computed list of Node children minus those being Ignored
5502     so it's only calculated once.
5504   - Fix use of the --cache-show option when building a Program()
5505     (or using any other arbitrary action) by making sure all Action
5506     instances have strfunction() methods.
5508   - Allow the source of Command() to be a directory.
5510   - Better error handling of things like raw TypeErrors in SConscripts.
5512   - When installing using "setup.py install --prefix=", suppress the
5513     distutils warning message about adding the (incorrect) library
5514     directory to your search path.
5516   - Correct the spelling of the "validater" option to "validator."
5517     Add a DeprecatedWarning when the old spelling is used.
5519   - Allow a Builder's emitter to be a dictionary that maps source file
5520     suffixes to emitter functions, using the suffix of the first file
5521     in the source list to pick the right one.
5523   - Refactor the creation of the Program, *Object and *Library Builders
5524     so that they're moved out of SCons.Defaults and created on demand.
5526   - Don't split SConscript file names on white space.
5528   - Document the SConscript function's "dirs" and "name" keywords.
5530   - Remove the internal (and superfluous) SCons.Util.argmunge() function.
5532   - Add /TP to the default CXXFLAGS for msvc, so it can compile all
5533     of the suffixes we use as C++ files.
5535   - Allow the "prefix" and "suffix" attributes of a Builder to be
5536     callable objects that return generated strings, or dictionaries
5537     that map a source file suffix to the right prefix/suffix.
5539   - Support a MAXLINELINELENGTH construction variable on Win32 systems
5540     to control when a temporary file is used for long command lines.
5542   - Make how we build .rpm packages not depend on the installation
5543     locations from the distutils being used.
5545   - When deducing a target Node, create it directly from the first
5546     source Node, not by trying to create the right string to pass to
5547     arg2nodes().
5549   - Add support for SWIG.
5551   From Bram Moolenaar:
5553   - Test portability fixes for FreeBSD.
5555   From Gary Oberbrunner:
5557   - Report the target being built in error messages when building
5558     multiple sources from different extensions, or when the target file
5559     extension can't be deduced, or when we don't have an action for a
5560     file suffix.
5562   - Provide helpful error messages when the arguments to env.Install()
5563     are incorrect.
5565   - Fix the value returned by the Node.prevsiginfo() method to conform
5566     to a previous change when checking whether a node is current.
5568   - Supply a stack trace if the Taskmaster catches an exception.
5570   - When using a temporary file for a long link line on Win32 systems,
5571     (also) print the command line that is being executed through the
5572     temporary file.
5574   - Initialize the LIB environment variable when using the Intel
5575     compiler (icl).
5577   - Documentation fixes:  better explain the AlwaysBuild() function.
5579   From Laurent Pelecq:
5581   - When the -debug=pdb option is specified, use pdb.Pdb().runcall() to
5582     call pdb directly, don't call Python recursively.
5584   From Ben Scott:
5586   - Add support for a platform-independent CPPDEFINES variable.
5588   From Christoph Wiedemann:
5590   - Have the g++ Tool actually use g++ in preference to c++.
5592   - Have the gcc Tool actually use gcc in preference to cc.
5594   - Add a gnutools.py test of the GNU tool chain.
5596   - Be smarter about linking: use $CC by default and $CXX only if we're
5597     linking with any C++ objects.
5599   - Avoid SCons hanging when a piped command has a lot of output to read.
5601   - Add QT support for preprocessing .ui files into .c files.
5605 RELEASE 0.90 - Wed, 25 Jun 2003 14:24:52 -0500
5607   From Chad Austin:
5609   - Fix the _concat() documentation, and add a test for it.
5611   - Portability fixes for non-GNU versions of lex and yacc.
5613   From Matt Balvin:
5615   - Fix handling of library prefixes when the subdirectory matches
5616     the prefix.
5618   From Timothee Bessett:
5620   - Add an M4 Builder.
5622   From Charles Crain:
5624   - Use '.lnk' as the suffix on the temporary file for linking long
5625     command lines (necessary for the Phar Lap linkloc linker).
5627   - Save non-string Options values as their actual type.
5629   - Save Options string values that contain a single quote correctly.
5631   - Save any Options values that are changed from the default
5632     Environment values, not just ones changed on the command line or in
5633     an Options file.
5635   - Make closing the Options file descriptor exception-safe.
5637   From Steven Knight:
5639   - SCons now enforces (with an error) that construction variables
5640     must have the same form as valid Python identifiers.
5642   - Fix man page bugs: remove duplicate AddPostAction() description;
5643     document no_import_lib; mention that CPPFLAGS does not contain
5644     $_CPPINCFLAGS; mention that F77FLAGS does not contain $_F77INCFLAGS;
5645     mention that LINKFLAGS and SHLINKFLAGS contains neither $_LIBFLAGS
5646     nor $_LIBDIRFLAGS.
5648   - Eliminate a dependency on the distutils.fancy_getopt module by
5649     copying and pasting its wrap_text() function directly.
5651   - Make the Script.Options() subclass match the underlying base class
5652     implementation.
5654   - When reporting a target is up to date, quote the target like make
5655     (backquote-quote) instead of with double quotes.
5657   - Fix handling of ../* targets when using -U, -D or -u.
5659   From Steve Leblanc:
5661   - Don't update the .sconsign files when run with -n.
5663   From Gary Oberbrunner:
5665   - Add support for the Intel C Compiler (icl.exe).
5667   From Anthony Roach
5669   - Fix Import('*').
5671   From David Snopek
5673   - Fix use of SConf in paths with white space in them.
5675   - Add CheckFunc and CheckType functionality to SConf.
5677   - Fix use of SConf with Builders that return a list of nodes.
5679   From David Snopek and Christoph Wiedemann
5681   - Fix use of the SConf subsystem with SConscriptChdir().
5683   From Greg Spencer
5685   - Check for the existence of MS Visual Studio on disk before using it,
5686     to avoid getting fooled by leftover junk in the registry.
5688   - Add support for MSVC++ .NET.
5690   - Add support for MS Visual Studio project files (DSP, DSW,
5691     SLN and VCPROJ files).
5693   From Christoph Wiedemann
5695   - SConf now works correctly when the -n and -q options are used.
5699 RELEASE 0.14 - Wed, 21 May 2003 05:16:32 -0500
5701   From Chad Austin:
5703   - Use .dll (not .so) for shared libraries on Cygwin; use -fPIC
5704     when compiling them.
5706   - Use 'rm' to remove files under Cygwin.
5708   - Add a PLATFORM variable to construction environments.
5710   - Remove the "platform" argument from tool specifications.
5712   - Propogate PYTHONPATH when running the regression tests so distutils
5713     can be found in non-standard locations.
5715   - Using MSVC long command-line linking when running Cygwin.
5717   - Portability fixes for a lot of tests.
5719   - Add a Value Node class for dependencies on in-core Python values.
5721   From Allen Bierbaum:
5723   - Pass an Environment to the Options validator method, and
5724     add an Options.Save() method.
5726   From Steve Christensen:
5728   - Add an optional sort function argument to the GenerateHelpText()
5729     Options function.
5731   - Evaluate the "varlist" variables when computing the signature of a
5732     function action.
5734   From Charles Crain:
5736   - Parse the source .java files for class names (including inner class
5737     names) to figure out the target .class files that will be created.
5739   - Make Java support work with Repositories and SConscriptChdir(0).
5741   - Pass Nodes, not strings, to Builder emitter functions.
5743   - Refactor command-line interpolation and signature calculation
5744     so we can use real Node attributes.
5746   From Steven Knight:
5748   - Add Java support (javac, javah, jar and rmic).
5750   - Propagate the external SYSTEMROOT environment variable into ENV on
5751     Win32 systems, so external commands that use sockets will work.
5753   - Add a .posix attribute to PathList expansions.
5755   - Check out CVS source files using POSIX path names (forward slashes
5756     as separators) even on Win32.
5758   - Add Node.clear() and Node.FS.Entry.clear() methods to wipe out a
5759     Node's state, allowing it to be re-evaluated by continuous
5760     integration build interfaces.
5762   - Change the name of the Set{Build,Content}SignatureType() functions
5763     to {Target,Source}Signatures().  Deprecate the old names but support
5764     them for backwards compatibility.
5766   - Add internal SCons.Node.FS.{Dir,File}.Entry() methods.
5768   - Interpolate the null string if an out-of-range subscript is used
5769     for a construction variable.
5771   - Fix the internal Link function so that it properly links or copies
5772     files in subsidiary BuildDir directories.
5774   - Refactor the internal representation of a single execution instance
5775     of an action to eliminate redundant signature calculations.
5777   - Eliminate redundant signature calculations for Nodes.
5779   - Optimize out calling hasattr() before accessing attributes.
5781   - Say "Cleaning targets" (not "Building...") when the -c option is
5782     used.
5784   From Damyan Pepper:
5786   - Quote the "Entering directory" message like Make.
5788   From Stefan Reichor:
5790   - Add support for using Ghostscript to convert Postscript to PDF files.
5792   From Anthony Roach:
5794   - Add a standalone "Alias" function (separate from an Environment).
5796   - Make Export() work for local variables.
5798   - Support passing a dictionary to Export().
5800   - Support Import('*') to import everything that's been Export()ed.
5802   - Fix an undefined exitvalmap on Win32 systems.
5804   - Support new SetOption() and GetOption() functions for setting
5805     various command-line options from with an SConscript file.
5807   - Deprecate the old SetJobs() and GetJobs() functions in favor of
5808     using the new generic {Set,Get}Option() functions.
5810   - Fix a number of tests that searched for a Fortran compiler using the
5811     external PATH instead of what SCons would use.
5813   - Fix the interaction of SideEffect() and BuildDir() so that (for
5814     example) PDB files get put correctly in a BuildDir().
5816   From David Snopek:
5818   - Contribute the "Autoscons" code for Autoconf-like checking for
5819     the existence of libraries, header files and the like.
5821   - Have the Tool() function add the tool name to the $TOOLS
5822     construction variable.
5824   From Greg Spencer:
5826   - Support the C preprocessor #import statement.
5828   - Allow the SharedLibrary() Builder on Win32 systems to be able to
5829     register a newly-built dll using regsvr32.
5831   - Add a Builder for Windows type library (.tlb) files from IDL files.
5833   - Add an IDL scanner.
5835   - Refactor the Fortran, C and IDL scanners to share common logic.
5837   - Add .srcpath and .srcdir attributes to $TARGET and $SOURCE.
5839   From Christoph Wiedemann:
5841   - Integrate David Snopek's "Autoscons" code as the new SConf
5842     configuration subsystem, including caching of values between
5843     runs (using normal SCons dependency mechanisms), tests, and
5844     documentation.
5848 RELEASE 0.13 - Mon, 31 Mar 2003 20:22:00 -0600
5850   From Charles Crain:
5852   - Fix a bug when BuildDir(duplicate=0) is used and SConscript
5853     files are called from within other SConscript files.
5855   - Support (older) versions of Perforce which don't set the Windows
5856     registry.
5860 RELEASE 0.12 - Thu, 27 Mar 2003 23:52:09 -0600
5862   From Charles Crain:
5864   - Added support for the Perforce source code management system.
5866   - Fix str(Node.FS) so that it returns a path relative to the calling
5867     SConscript file's directory, not the top-level directory.
5869   - Added support for a separate src_dir argument to SConscript()
5870     that allows explicit specification of where the source files
5871     for an SConscript file can be found.
5873   - Support more easily re-usable flavors of command generators by
5874     calling callable variables when strings are expanded.
5876   From Steven Knight:
5878   - Added an INSTALL construction variable that can be set to a function
5879     to control how the Install() and InstallAs() Builders install files.
5880     The default INSTALL function now copies, not links, files.
5882   - Remove deprecated features:  the "name" argument to Builder objects,
5883     and the Environment.Update() method.
5885   - Add an Environment.SourceCode() method to support fetching files
5886     from source code systems.  Add factory methods that create Builders
5887     to support BitKeeper, CVS, RCS, and SCCS.  Add support for fetching
5888     files from RCS or SCCS transparently (like GNU Make).
5890   - Make the internal to_String() function more efficient.
5892   - Make the error message the same as other build errors when there's a
5893     problem unlinking a target file in preparation for it being built.
5895   - Make TARGET, TARGETS, SOURCE and SOURCES reserved variable names and
5896     warn if the user tries to set them in a construction environment.
5898   - Add support for Tar and Zip files.
5900   - Better documentation of the different ways to export variables to a
5901     subsidiary SConscript file.  Fix documentation bugs in a tools
5902     example, places that still assumed SCons split strings on white
5903     space, and typos.
5905   - Support fetching arbitrary files from the TARGETS or SOURCES lists
5906     (e.g. ${SOURCES[2]}) when calculating the build signature of a
5907     command.
5909   - Don't silently swallow exceptions thrown by Scanners (or other
5910     exceptions while finding a node's dependent children).
5912   - Push files to CacheDir() before calling the superclass built()
5913     method (which may clear the build signature as part of clearing
5914     cached implicit dependencies, if the file has a source scanner).
5915     (Bug reported by Jeff Petkau.)
5917   - Raise an internal error if we attempt to push a file to CacheDir()
5918     with a build signature of None.
5920   - Add an explicit Exit() function for terminating early.
5922   - Change the documentation to correctly describe that the -f option
5923     doesn't change to the directory in which the specified file lives.
5925   - Support changing directories locally with SConscript directory
5926     path names relative to any SConstruct file specified with -f.
5927     This allows you to build in another directory by simply changing
5928     there and pointing at the SConstruct file in another directory.
5930   - Change the default SConscriptChdir() behavior to change to the
5931     SConscript directory while it's being read.
5933   - Fix an exception thrown when the -U option was used with no
5934     Default() target specified.
5936   - Fix -u so that it builds things in corresponding build directories
5937     when used in a source directory.
5939   From Lachlan O'Dea:
5941   - Add SharedObject() support to the masm tool.
5943   - Fix WhereIs() to return normalized paths.
5945   From Jeff Petkau:
5947   - Don't copy a built file to a CacheDir() if it's already there.
5949   - Avoid partial copies of built files in a CacheDir() by copying
5950     to a temporary file and renaming.
5952   From Anthony Roach:
5954   - Fix incorrect dependency-cycle errors when an Aliased source doesn't
5955     exist.
5959 RELEASE 0.11 - Tue, 11 Feb 2003 05:24:33 -0600
5961   From Chad Austin:
5963   - Add support for IRIX and the SGI MIPSPro tool chain.
5965   - Support using the MSVC tool chain when running Cygwin Python.
5967   From Michael Cook:
5969   - Avoid losing signal bits in the exit status from a command,
5970     helping terminate builds on interrupt (CTRL+C).
5972   From Charles Crain:
5974   - Added new AddPreAction() and AddPostAction() functions that support
5975     taking additional actions before or after building specific targets.
5977   - Add support for the PharLap ETS tool chain.
5979   From Steven Knight:
5981   - Allow Python function Actions to specify a list of construction
5982     variables that should be included in the Action's signature.
5984   - Allow libraries in the LIBS variable to explicitly include the prefix
5985     and suffix, even when using the GNU linker.
5986     (Bug reported by Neal Becker.)
5988   - Use DOS-standard CR-LF line endings in the scons.bat file.
5989     (Bug reported by Gary Ruben.)
5991   - Doc changes:  Eliminate description of deprecated "name" keyword
5992     argument from Builder definition (reported by Gary Ruben).
5994   - Support using env.Append() on BUILDERS (and other dictionaries).
5995     (Bug reported by Bj=F6rn Bylander.)
5997   - Setting the BUILDERS construction variable now properly clears
5998     the previous Builder attributes from the construction Environment.
5999     (Bug reported by Bj=F6rn Bylander.)
6001   - Fix adding a prefix to a file when the target isn't specified.
6002     (Bug reported by Esa Ilari Vuokko.)
6004   - Clean up error messages from problems duplicating into read-only
6005     BuildDir directories or into read-only files.
6007   - Add a CommandAction.strfunction() method, and add an "env" argument
6008     to the FunctionAction.strfunction() method, so that all Action
6009     objects have strfunction() methods, and the functions for building
6010     and returning a string both take the same arguments.
6012   - Add support for new CacheDir() functionality to share derived files
6013     between builds, with related options --cache-disable, --cache-force,
6014     and --cache-show.
6016   - Change the default behavior when no targets are specified to build
6017     everything in the current directory and below (like Make).  This
6018     can be disabled by specifying Default(None) in an SConscript.
6020   - Revamp SCons installation to fix a case-sensitive installation
6021     on Win32 systems, and to add SCons-specific --standard-lib,
6022     --standalone-lib, and --version-lib options for easier user
6023     control of where the libraries get installed.
6025   - Fix the ability to directly import and use Platform and Tool modules
6026     that have been implicitly imported into an Environment().
6028   - Add support for allowing an embedding interface to annotate a node
6029     when it's created.
6031   - Extend the SConscript() function to accept build_dir and duplicate
6032     keyword arguments that function like a BuildDir() call.
6034   From Steve Leblanc:
6036   - Fix the output of -c -n when directories are involved, so it
6037     matches -c.
6039   From Anthony Roach:
6041   - Use a different shared object suffix (.os) when using gcc so shared
6042     and static objects can exist side-by-side in the same directory.
6044   - Allow the same object files on Win32 to be linked into either
6045     shared or static libraries.
6047   - Cache implicit cache values when using --implicit-cache.
6051 RELEASE 0.10 - Thu, 16 Jan 2003 04:11:46 -0600
6053   From Derrick 'dman' Hudson:
6055   - Support Repositories on other file systems by symlinking or
6056     copying files when hard linking won't work.
6058   From Steven Knight:
6060   - Remove Python bytecode (*.pyc) files from the scons-local packages.
6062   - Have FunctionActions print a description of what they're doing
6063     (a representation of the Python call).
6065   - Fix the Install() method so that, like other actions, it prints
6066     what would have happened when the -n option is used.
6068   - Don't create duplicate source files in a BuildDir when the -n
6069     option is used.
6071   - Refactor the Scanner interface to eliminate unnecessary Scanner
6072     calls and make it easier to write efficient scanners.
6074   - Added a "recursive" flag to Scanner creation that specifies the
6075     Scanner should be invoked recursively on dependency files returned
6076     by the scanner.
6078   - Significant performance improvement from using a more efficient
6079     check, throughout the code, for whether a Node has a Builder.
6081   - Fix specifying only the source file to MultiStepBuilders such as
6082     the Program Builder.  (Bug reported by Dean Bair.)
6084   - Fix an exception when building from a file with the same basename as
6085     the subdirectory in which it lives.  (Bug reported by Gerard Patel.)
6087   - Fix automatic deduction of a target file name when there are
6088     multiple source files specified; the target is now deduced from just
6089     the first source file in the list.
6091   - Documentation fixes: better initial explanation of SConscript files;
6092     fix a misformatted "table" in the StaticObject explanation.
6094   From Steven Knight and Steve Leblanc:
6096   - Fix the -c option so it will remove symlinks.
6098   From Steve Leblanc:
6100   - Add a Clean() method to support removing user-specified targets
6101     when using the -c option.
6103   - Add a development script for running SCons through PyChecker.
6105   - Clean up things found by PyChecker (mostly unnecessary imports).
6107   - Add a script to use HappyDoc to create HTML class documentation.
6109   From Lachlan O'Dea:
6111   - Make the Environment.get() method return None by default.
6113   From Anthony Roach:
6115   - Add SetJobs() and GetJobs() methods to allow configuration of the
6116     number of default jobs (still overridden by -j).
6118   - Convert the .sconsign file format from ASCII to a pickled Python
6119     data structure.
6121   - Error message cleanups:  Made consistent the format of error
6122     messages (now all start with "scons: ***") and warning messages (now
6123     all start with "scons: warning:").  Caught more cases with the "Do
6124     not know how to build" error message.
6126   - Added support for the MinGW tool chain.
6128   - Added a --debug=includes option.
6132 RELEASE 0.09 - Thu,  5 Dec 2002 04:48:25 -0600
6134   From Chad Austin:
6136   - Add a Prepend() method to Environments, to append values to
6137     the beginning of construction variables.
6139   From Matt Balvin:
6141   - Add long command-line support to the "lib" Tool (Microsoft library
6142     archiver), too.
6144   From Charles Crain:
6146   - Allow $$ in a string to be passed through as $.
6148   - Support file names with odd characters in them.
6150   - Add support for construction variable substition on scanner
6151     directories (in CPPPATH, F77PATH, LIBPATH, etc.).
6153   From Charles Crain and Steven Knight:
6155   - Add Repository() functionality, including the -Y option.
6157   From Steven Knight:
6159   - Fix auto-deduction of target names so that deduced targets end
6160     up in the same subdirectory as the source.
6162   - Don't remove source files specified on the command line!
6164   - Suport the Intel Fortran Compiler (ifl.exe).
6166   - Supply an error message if there are no command-line or
6167     Default() targets specified.
6169   - Fix the ASPPCOM values for the GNU assembler.
6170     (Bug reported by Brett Polivka.)
6172   - Fix an exception thrown when a Default() directory was specified
6173     when using the -U option.
6175   - Issue a warning when -c can't remove a target.
6177   - Eliminate unnecessary Scanner calls by checking for the
6178     existence of a file before scanning it.  (This adds a generic
6179     hook to check an arbitrary condition before scanning.)
6181   - Add explicit messages to tell when we're "Reading SConscript files
6182     ...," "done reading SConscript files," "Building targets," and
6183     "done building targets."  Add a -Q option to supress these.
6185   - Add separate $SHOBJPREFIX and $SHOBJSUFFIX construction variables
6186     (by default, the same as $OBJPREFIX and $OBJSUFFIX).
6188   - Add Make-like error messages when asked to build a source file,
6189     and before trying to build a file that doesn't have all its source
6190     files (including when an invalid drive letter is used on WIN32).
6192   - Add an scons-local-{version} package (in both .tar.gz and .zip
6193     flavors) to help people who want to ship SCons as a stand-alone
6194     build tool in their software packages.
6196   - Prevent SCons from unlinking files in certain situations when
6197     the -n option is used.
6199   - Change the name of Tool/lib.py to Tool/mslib.py.
6201   From Steven Knight and Anthony Roach:
6203   - Man page:  document the fact that Builder calls return Node objects.
6205   From Steve LeBlanc:
6207   - Refactor option processing to use our own version of Greg Ward's
6208     Optik module, modified to run under Python 1.5.2.
6210   - Add a ParseConfig() command to modify an environment based on
6211     parsing output from a *-config command.
6213   From Jeff Petkau:
6215   - Fix interpretation of '#/../foo' on Win32 systems.
6217   From Anthony Roach:
6219   - Fixed use of command lines with spaces in their arguments,
6220     and use of Nodes with spaces in their string representation.
6222   - Make access and modification times of files in a BuildDir match
6223     the source file, even when hard linking isn't available.
6225   - Make -U be case insensitive on Win32 systems.
6227   - Issue a warning and continue when finding a corrupt .sconsign file.
6229   - Fix using an alias as a dependency of a target so that if one of the
6230     alias' dependencies gets rebuilt, the resulting target will, too.
6232   - Fix differently ordered targets causing unnecessary rebuilds
6233     on case insensitive systems.
6235   - Use os.system() to execute external commands whenever the "env"
6236     utility is available, which is much faster than fork()/exec(),
6237     and fixes the -j option on several platforms.
6239   - Fix use of -j with multiple targets.
6241   - Add an Options() object for friendlier accomodation of command-
6242     line arguments.
6244   - Add support for Microsoft VC++ precompiled header (.pch) files,
6245     debugger (.pdb) files, and resource (.rc) files.
6247   - Don't compute the $_CPPINCFLAGS, $_F77INCFLAGS, $_LIBFLAGS and
6248     $_LIBDIRFLAGS variables each time a command is executed, define
6249     them so they're computed only as needed.  Add a new _concat
6250     function to the Environment that allows people to define their
6251     own similar variables.
6253   - Fix dependency scans when $LIBS is overridden.
6255   - Add EnsurePythonVersion() and EnsureSConsVersion() functions.
6257   - Fix the overly-verbose stack trace on ListBuilder build errors.
6259   - Add a SetContentSignatureType() function, allowing use of file
6260     timestamps instead of MD5 signatures.
6262   - Make -U and Default('source') fail gracefully.
6264   - Allow the File() and Dir() methods to take a path-name string as
6265     the starting directory, in addition to a Dir object.
6267   - Allow the command handler to be selected via the SPAWN, SHELL
6268     and ESCAPE construction variables.
6270   - Allow construction variables to be overridden when a Builder
6271     is called.
6273   From sam th:
6275   - Dynamically check for the existence of utilities with which to
6276     initialize Environments by default.
6280 RELEASE 0.08 - Mon, 15 Jul 2002 12:08:51 -0500
6282   From Charles Crain:
6284   - Fixed a bug with relative CPPPATH dirs when using BuildDir().
6285     (Bug reported by Bob Summerwill.)
6287   - Added a warnings framework and a --warn option to enable or
6288     disable warnings.
6290   - Make the C scanner warn users if files referenced by #include
6291     directives cannot be found and --warn=dependency is specified.
6293   - The BUILDERS construction variable should now be a dictionary
6294     that maps builder names to actions.  Existing uses of lists,
6295     and the Builder name= keyword argument, generate warnings
6296     about use of deprecated features.
6298   - Removed the "shared" keyword argument from the Object and
6299     Library builders.
6301   - Added separated StaticObject, SharedObject, StaticLibrary and
6302     SharedLibrary builders.  Made Object and Library synonyms for
6303     StaticObject and StaticLibrary, respectively.
6305   - Add LIBS and LIBPATH dependencies for shared libraries.
6307   - Removed support for the prefix, suffix and src_suffix arguments
6308     to Builder() to be callable functions.
6310   - Fix handling file names with multiple dots.
6312   - Allow a build directory to be outside of the SConstruct tree.
6314   - Add a FindFile() function that searches for a file node with a
6315     specified name.
6317   - Add $CPPFLAGS to the shared-object command lines for g++ and gcc.
6319   From Charles Crain and Steven Knight:
6321   - Add a "tools=" keyword argument to Environment instantiation,
6322     and a separate Tools() method, for more flexible specification
6323     of tool-specific environment changes.
6325   From Steven Knight:
6327   - Add a "platform=" keyword argument to Environment instantiation,
6328     and a separate Platform() method, for more flexible specification
6329     of platform-specific environment changes.
6331   - Updated README instructions and setup.py code to catch an
6332     installation failure from not having distutils installed.
6334   - Add descriptions to the -H help text for -D, -u and -U so
6335     people can tell them apart.
6337   - Remove the old feature of automatically splitting strings
6338     of file names on white space.
6340   - Add a dependency Scanner for native Fortran "include" statements,
6341     using a new "F77PATH" construction variable.
6343   - Fix C #include scanning to detect file names with characters like
6344     '-' in them.
6346   - Add more specific version / build output to the -v option.
6348   - Add support for the GNU as, Microsoft masm, and nasm assemblers.
6350   - Allow the "target" argument to a Builder call to be omitted, in
6351     which case the target(s) are deduced from the source file(s) and the
6352     Builder's specified suffix.
6354   - Add a tar archive builder.
6356   - Add preliminary support for the OS/2 Platform, including the icc
6357     and ilink Tools.
6359   From Jeff Petkau:
6361   - Fix --implicit-cache if the scanner returns an empty list.
6363   From Anthony Roach:
6365   - Add a "multi" keyword argument to Builder creation that specifies
6366     it's okay to call the builder multiple times for a target.
6368   - Set a "multi" on Aliases so multiple calls will append to an Alias.
6370   - Fix emitter functions' use of path names when using BuildDir or
6371     in subdirectories.
6373   - Fix --implicit-cache causing redundant rebuilds when the header
6374     file list changed.
6376   - Fix --implicit-cache when a file has no implicit dependencies and
6377     its source is generated.
6379   - Make the drive letters on Windows always be the same case, so that
6380     changes in the case of drive letters don't cause a rebuild.
6382   - Fall back to importing the SCons.TimeStamp module if the SCons.MD5
6383     module can't be imported.
6385   - Fix interrupt handling to guarantee that a single interrupt will
6386     halt SCons both when using -j and not.
6388   - Fix .sconsign signature storage so that output files of one build
6389     can be safely used as input files to another build.
6391   - Added a --debug=time option to print SCons execution times.
6393   - Print an error message if a file can't be unlinked before being
6394     built, rather than just silently terminating the build.
6396   - Add a SideEffect() method that can be used to tell the build
6397     engine that a given file is created as a side effect of building
6398     a target.  A file can be specified as a side effect of more than
6399     one build comand, in which case the commands will not be executed
6400     simultaneously.
6402   - Significant performance gains from not using our own version of
6403     the inefficient stock os.path.splitext() method, caching source
6404     suffix computation, code cleanup in MultiStepBuilder.__call__(),
6405     and replicating some logic in scons_subst().
6407   - Add --implicit-deps-changed and --implicit-deps-unchanged options.
6409   - Add a GetLaunchDir() function.
6411   - Add a SetBuildSignatureType() function.
6413   From Zed Shaw:
6415   - Add an Append() method to Environments, to append values to
6416     construction variables.
6418   - Change the name of Update() to Replace().  Keep Update() as a
6419     deprecated synonym, at least for now.
6421   From Terrel Shumway:
6423   - Use a $PYTHON construction variable, initialized to sys.executable,
6424     when using Python to build parts of the SCons packages.
6426   - Use sys.prefix, not sys.exec_prefix, to find pdb.py.
6430 RELEASE 0.07 - Thu,  2 May 2002 13:37:16 -0500
6432   From Chad Austin:
6434   - Changes to build SCons packages on IRIX (and other *NIces).
6436   - Don't create a directory Node when a file already exists there,
6437     and vice versa.
6439   - Add 'dirs' and 'names' keyword arguments to SConscript for
6440     easier specification of subsidiary SConscript files.
6442   From Charles Crain:
6444   - Internal cleanup of environment passing to function Actions.
6446   - Builders can now take arbitrary keyword arguments to create
6447     attributes to be passed to: command generator functions,
6448     FunctionAction functions, Builder emitter functions (below),
6449     and prefix/suffix generator functions (below).
6451   - Command generator functions can now return ANYTHING that can be
6452     converted into an Action (a function, a string, a CommandGenerator
6453     instance, even an ActionBase instance).
6455   - Actions now call get_contents() with the actual target and source
6456     nodes used for the build.
6458   - A new DictCmdGenerator class replaces CompositeBuilder to support
6459     more flexible Builder behavior internally.
6461   - Builders can now take an emitter= keyword argument.  An emitter
6462     is a function that takes target, source, and env argument, then
6463     return a 2-tuple of (new sources, new targets).  The emitter is
6464     called when the Builder is __call__'ed, allowing a user to modify
6465     source and target lists.
6467   - The prefix, suffix and src_suffix Builder arguments now take a
6468     callable as well a string.  The callable is passed the Environment
6469     and any extra Builder keyword arguments and is expected to return
6470     the appropriate prefix or suffix.
6472   - CommandActions can now be a string, a list of command + argument
6473     strings, or a list of commands (strings or lists).
6475   - Added shared library support.  The Object and Library Builders now
6476     take a "shared=1" keyword argument to specify that a shared object
6477     or shared library should be built.  It is an error to try to build
6478     static objects into a shared library or vice versa.
6480   - Win32 support for .def files has been added.  Added the Win32-specific
6481     construction variables $WIN32DEFPREFIX, $WIN32DEFSUFFIX,
6482     $WIN32DLLPREFIX and $WIN32IMPLIBPREFIX.  When building a .dll,
6483     the new construction variable $WIN32_INSERT_DEF, controls whether
6484     the appropriately-named .def file is inserted into the target
6485     list (if not already present).  A .lib file is always added to
6486     a Library build if not present in the list of targets.
6488   - ListBuilder now passes all targets to the action, not just the first.
6490   - Fix so that -c now deletes generated yacc .h files.
6492   - Builder actions and emitter functions can now be initialized, through
6493     construction variables, to things other than strings.
6495   - Make top-relative '#/dir' lookups work like '#dir'.
6497   - Fix for relative CPPPATH directories in subsidiary SConscript files
6498     (broken in 0.06).
6500   - Add a for_signature argument to command generators, so that
6501     generators that need to can return distinct values for the
6502     command signature and for executing the command.
6504   From Alex Jacques:
6506   - Create a better scons.bat file from a py2bat.py script on the Python
6507     mailing list two years ago (modeled after pl2bat.pl).
6509   From Steven Knight:
6511   - Fix so that -c -n does *not* remove the targets!
6513   - Man page:  Add a hierarchical libraries + Program example.
6515   - Support long MSVC linker command lines through a builder action
6516     that writes to a temporary file and uses the magic MSVC "link @file"
6517     argument syntax if the line is longer than 2K characters.
6519   - Fix F77 command-line options on Win32 (use /Fo instead of -o).
6521   - Use the same action to build from .c (lower case) and .C (upper
6522     case) files on case-insensitive systems like Win32.
6524   - Support building a PDF file directly from a TeX or LaTeX file
6525     using pdftex or pdflatex.
6527   - Add a -x option to runtest.py to specify the script being tested.
6528     A -X option indicates it's an executable, not a script to feed
6529     to the Python interpreter.
6531   - Add a Split() function (identical to SCons.Util.argmunge()) for use
6532     in the next release, when Builders will no longer automatically split
6533     strings on white space.
6535   From Steve Leblanc:
6537   - Add the SConscriptChdir() method.
6539   From Anthony Roach:
6541   - Fix --debug=tree when used with directory targets.
6543   - Significant internal restructuring of Scanners and Taskmaster.
6545   - Added new --debug=dtree option.
6547   - Fixes for --profile option.
6549   - Performance improvement in construction variable substitution.
6551   - Implemented caching of content signatures, plus added --max-drift
6552     option to control caching.
6554   - Implemented caching of dependency signatures, enabled by new
6555     --implicit-cache option.
6557   - Added abspath construction variable modifier.
6559   - Added $SOURCE variable as a synonym for $SOURCES[0].
6561   - Write out .sconsign files on error or interrupt so intermediate
6562     build results are saved.
6564   - Change the -U option to -D.  Make a new -U that builds just the
6565     targets from the local SConscript file.
6567   - Fixed use of sys.path so Python modules can be imported from
6568     the SConscript directory.
6570   - Fix for using Aliases with the -u, -U and -D options.
6572   - Fix so that Nodes can be passed to SConscript files.
6574   From Moshe Zadka:
6576   - Changes for official Debian packaging.
6580 RELEASE 0.06 - Thu, 28 Mar 2002 01:24:29 -0600
6582   From Charles Crain:
6584   - Fix command generators to expand construction variables.
6586   - Make FunctionAction arguments be Nodes, not strings.
6588   From Stephen Kennedy:
6590   - Performance:  Use a dictionary, not a list, for a Node's parents.
6592   From Steven Knight:
6594   - Add .zip files to the packages we build.
6596   - Man page:  document LIBS, fix a typo, document ARGUMENTS.
6598   - Added RANLIB and RANLIBFLAGS construction variables.  Only use them
6599     in ARCOM if there's a "ranlib" program on the system.
6601   - Add a configurable CFILESUFFIX for the Builder of .l and .y files
6602     into C files.
6604   - Add a CXXFile Builder that turns .ll and .yy files into .cc files
6605     (configurable via a CXXFILESUFFIX construction variable).
6607   - Use the POSIX-standard lex -t flag, not the GNU-specific -o flag.
6608     (Bug reported by Russell Christensen.)
6610   - Fixed an exception when CPPPATH or LIBPATH is a null string.
6611     (Bug reported by Richard Kiss.)
6613   - Add a --profile=FILE option to make profiling SCons easier.
6615   - Modify the new DVI builder to create .dvi files from LaTeX (.ltx
6616     and .latex) files.
6618   - Add support for Aliases (phony targets).
6620   - Add a WhereIs() method for searching for path names to executables.
6622   - Add PDF and PostScript document builders.
6624   - Add support for compiling Fortran programs from a variety of
6625     suffixes (a la GNU Make):  .f, .F, .for, .FOR, .fpp and .FPP
6627   - Support a CPPFLAGS variable on all default commands that use the
6628     C preprocessor.
6630   From Steve Leblanc:
6632   - Add support for the -U option.
6634   - Allow CPPPATH, LIBPATH and LIBS to be specified as white-space
6635     separated strings.
6637   - Add a document builder to create .dvi files from TeX (.tex) files.
6639   From Anthony Roach:
6641   - Fix:  Construction variables with values of 0 were incorrectly
6642     interpolated as ''.
6644   - Support env['VAR'] to fetch construction variable values.
6646   - Man page:  document Precious().
6650 RELEASE 0.05 - Thu, 21 Feb 2002 16:50:03 -0600
6652   From Chad Austin:
6654   - Set PROGSUFFIX to .exe under Cygwin.
6656   From Charles Crain:
6658   - Allow a library to specified as a command-line source file, not just
6659     in the LIBS construction variable.
6661   - Compensate for a bug in os.path.normpath() that returns '' for './'
6662     on WIN32.
6664   - More performance optimizations:  cache #include lines from files,
6665     eliminate unnecessary calls.
6667   - If a prefix or suffix contains white space, treat the resulting
6668     concatenation as separate arguments.
6670   - Fix irregularities in the way we fetch DevStudio information from
6671     the Windows registry, and in our registry error handling.
6673   From Steven Knight:
6675   - Flush stdout after print so it intermixes correctly with stderr
6676     when redirected.
6678   - Allow Scanners to return a list of strings, and document how to
6679     write your own Scanners.
6681   - Look up implicit (scanned) dependencies relative to the directory
6682     of file being scanned.
6684   - Make writing .sconsign files more robust by first trying to write
6685     to a temp file that gets renamed.
6687   - Create all of the directories for a list of targets before trying
6688     to build any of the targets.
6690   - WIN32 portability fixes in tests.
6692   - Allow the list of variables exported to an SConscript file to be
6693     a UserList, too.
6695   - Document the overlooked LIBPATH construction variable.
6696     (Bug reported by Eicke Godehardt.)
6698   - Fix so that Ignore() ignores indirect, implicit dependencies
6699     (included files), not just direct dependencies.
6701   - Put the man page in the Debian distribution.
6703   - Run HTML docs through tidy to clean up the HTML (for Konqueror).
6705   - Add preliminary support for Unicode strings.
6707   - Efficiency:  don't scan dependencies more than once during the
6708     walk of a tree.
6710   - Fix the -c option so it doesn't stop removing targets if one doesn't
6711     already exist.
6712     (Bug reported by Paul Connell.)
6714   - Fix the --debug=pdb option when run on Windows NT.
6715     (Bug reported by Paul Connell.)
6717   - Add support for the -q option.
6719   From Steve Leblanc:
6721   - Add support for the -u option.
6723   - Add .cc and .hh file suffixes to the C Scanner.
6725   From Anthony Roach:
6727   - Make the scons script return an error code on failures.
6729   - Add support for using code to generate a command to build a target.
6733 RELEASE 0.04 - Wed, 30 Jan 2002 11:09:42 -0600
6735   From Charles Crain:
6737   - Significant performance improvements in the Node.FS and
6738     Scanner subsystems.
6740   - Fix signatures of binary files on Win32 systems.
6742   - Allow LIBS and LIBPATH to be strings, not just arrays.
6744   - Print a traceback if a Python-function builder throws an exception.
6746   From Steven Knight:
6748   - Fix using a directory as a Default(), and allow Default() to
6749     support white space in file names for strings in arrays.
6751   - Man page updates:  corrected some mistakes, documented various
6752     missing Environment methods, alphabetized the construction
6753     variables and other functions, defined begin and end macros for
6754     the example sections, regularized white space separation, fixed
6755     the use of Export() in the Multiple Variants example.
6757   - Function action fixes:  None is now a successful return value.
6758     Exceptions are now reported.  Document function actions.
6760   - Add 'Action' and 'Scanner' to the global keywords so SConscript
6761     files can use them too.
6763   - Removed the Wrapper class between Nodes and Walkers.
6765   - Add examples using Library, LIBS, and LIBPATH.
6767   - The C Scanner now always returns a sorted list of dependencies
6768     so order changes don't cause unnecessary rebuilds.
6770   - Strip $(-$) bracketed text from command lines.  Use this to
6771     surround $_INCDIRS and $_LIBDIRS so we don't rebuild in response
6772     to changes to -I or -L options.
6774   - Add the Ignore() method to ignore dependencies.
6776   - Provide an error message when a nonexistent target is specified
6777     on the command line.
6779   - Remove targets before building them, and add an Environment
6780     Precious() method to override that.
6782   - Eliminate redundant calls to the same builder when the target is a
6783     list of targets:  Add a ListBuilder class that wraps Builders to
6784     handle lists atomically.  Extend the Task class to support building
6785     and updating multiple targets in a single Task.  Simplify the
6786     interface between Task and Taskmaster.
6788   - Add a --debug=pdb option to re-run SCons under the Python debugger.
6790   - Only compute a build signature once for each node.
6792   - Changes to our sys.path[] manipulation to support installation into
6793     an arbitrary --prefix value.
6795   From Steve Leblanc:
6797   - Add var=value command-line arguments.
6801 RELEASE 0.03 - Fri, 11 Jan 2002 01:09:30 -0600
6803   From Charles Crain:
6805   - Performance improvements in the Node.FS and Sig.Calculator classes.
6807   - Add the InstallAs() method.
6809   - Execute commands through an external interpreter (sh, cmd.exe, or
6810     command.com) to handle redirection metacharacters.
6812   - Allow the user to supply a command handler.
6814   From Steven Knight:
6816   - Search both /usr/lib and /usr/local/lib for scons directories by
6817     adding them both to sys.path, with whichever is in sys.prefix first.
6819   - Fix interpreting strings of multiple white-space separated file names
6820     as separate file names, allowing prefixes and suffixes to be appended
6821     to each individually.
6823   - Refactor to move CompositeBuilder initialization logic from the
6824     factory wrapper to the __init__() method, and allow a Builder to
6825     have both an action and a src_builder (or array of them).
6827   - Refactor BuilderBase.__call__() to separate Node creation/lookup
6828     from initialization of the Node's builder information.
6830   - Add a CFile Builder object that supports turning lex (.l) and
6831     yacc (.y) files into .c files.
6833   - Document: variable interpretation attributes; how to propogate
6834     the user's environment variables to executed commands; how to
6835     build variants in multiple BuildDirs.
6837   - Collect String, Dict, and List type-checking in common utility
6838     routines so we can accept User{String,Dict,List}s all over.
6840   - Put the Action factory and classes into their own module.
6842   - Use one CPlusPlusAction in the Object Builder's action dictionary,
6843     instead of letting it create multiple identical instances.
6845   - Document the Install() and InstallAs() methods.
6847   From Steve Leblanc:
6849   - Require that a Builder be given a name argument, supplying a
6850     useful error message when it isn't.
6852   From Anthony Roach:
6854   - Add a "duplicate" keyword argument to BuildDir() that can be set
6855     to prevent linking/copying source files into build directories.
6857   - Add a "--debug=tree" option to print an ASCII dependency tree.
6859   - Fetch the location of the Microsoft Visual C++ compiler(s) from
6860     the Registry, instead of hard-coding the location.
6862   - Made Scanner objects take Nodes, not path names.
6864   - Have the C Scanner cache the #include file names instead of
6865     (re-)scanning the file each time it's called.
6867   - Created a separate class for parent "nodes" of file system roots,
6868     eliminating the need for separate is-parent-null checks everywhere.
6870   - Removed defined __hash__() and __cmp() methods from FS.Entry, in
6871     favor of Python's more efficient built-in identity comparisons.
6875 RELEASE 0.02 - Sun, 23 Dec 2001 19:05:09 -0600
6877   From Charles Crain:
6879   - Added the Install(), BuildDir(), and Export() methods.
6881   - Fix the -C option by delaying setting the top of the FS tree.
6883   - Avoid putting the directory path on the libraries in the LIBS
6884     construction variable.
6886   - Added a GetBuildPath() method to return the full path to the
6887     Node for a specified string.
6889   - Fixed variable substitution in CPPPATH and LIBPATH.
6891   From Steven Knight:
6893   - Fixed the version comment in the scons.bat (the UNIX geek used
6894     # instead of @rem).
6896   - Fix to setup.py so it doesn't require a sys.argv[1] argument.
6898   - Provide make-like warning message for "command not found" and
6899     similar errors.
6901   - Added an EXAMPLES section to the man page.
6903   - Make Default() targets properly relative to their SConscript
6904     file's subdirectory.
6906   From Anthony Roach:
6908   - Documented CXXFLAGS, CXXCOM, and CPPPATH.
6910   - Fixed SCONS_LIB_DIR to work as documented.
6912   - Made Default() accept Nodes as arguments.
6914   - Changed Export() to make it easier to use.
6916   - Added the Import() and Return() methods.
6920 RELEASE 0.01 - Thu Dec 13 19:25:23 CST 2001
6922 A brief overview of important functionality available in release 0.01:
6924   - C and C++ compilation on POSIX and Windows NT.
6926   - Automatic scanning of C/C++ source files for #include dependencies.
6928   - Support for building libraries; setting construction variables
6929     allows creation of shared libraries.
6931   - Library and C preprocessor search paths.
6933   - File changes detected using MD5 signatures.
6935   - User-definable Builder objects for building files.
6937   - User-definable Scanner objects for scanning for dependencies.
6939   - Parallel build (-j) support.
6941   - Dependency cycles detected.
6943   - Linux packages available in RPM and Debian format.
6945   - Windows installer available.