Change the names of the Set{Build,Content}SignatureType() functions.
[scons.git] / src / CHANGES.txt
1 # __COPYRIGHT__
2 # __FILE__ __REVISION__ __DATE__ __DEVELOPER__
3
4
5                  SCons - a software construction tool
6
7                             Change Log
8
9
10
11 RELEASE 0.14 - XXX
12
13   From Chad Austin:
14
15   - Use .dll (not .so) for shared libraries on Cygwin; use -fPIC
16     when compiling them.
17
18   - Use 'rm' to remove files under Cygwin.
19
20   - Add a PLATFORM variable to construction environments.
21
22   - Remove the "platform" argument from tool specifications.
23
24   - Propogate PYTHONPATH when running the regression tests so distutils
25     can be found in non-standard locations.
26
27   From Allen Bierbaum:
28
29   - Pass an Environment to the Options validator method, and
30     add an Options.Save() method.
31
32   From Steve Christensen:
33
34   - Add an optional sort function argument to the GenerateHelpText()
35     Options function.
36
37   From Steven Knight:
38
39   - Add support for Java (javac and jar).
40
41   - Propagate the external SYSTEMROOT environment variable into ENV on
42     Win32 systems, so external commands that use sockets will work.
43
44   - Add a .posix attribute to PathList expansions.
45
46   - Check out CVS source files using POSIX path names (forward slashes
47     as separators) even on Win32.
48
49   - Add Node.clear() and Node.FS.Entry.clear() methods to wipe out a
50     Node's state, allowing it to be re-evaluated by continuous
51     integration build interfaces.
52
53   - Change the name of the Set{Build,Content}SignatureType() functions
54     to {Target,Source}Signatures().  Deprecate the old names but support
55     them for backwards compatibility.
56
57   From Stefan Reichor:
58
59   - Add support for using Ghostscript to convert Postscript to PDF files.
60
61
62
63 RELEASE 0.13 - Mon, 31 Mar 2003 20:22:00 -0600
64
65   From Charles Crain:
66
67   - Fix a bug when BuildDir(duplicate=0) is used and SConscript
68     files are called from within other SConscript files.
69
70   - Support (older) versions of Perforce which don't set the Windows
71     registry.
72
73
74
75 RELEASE 0.12 - Thu, 27 Mar 2003 23:52:09 -0600
76
77   From Charles Crain:
78
79   - Added support for the Perforce source code management system.
80
81   - Fix str(Node.FS) so that it returns a path relative to the calling
82     SConscript file's directory, not the top-level directory.
83
84   - Added support for a separate src_dir argument to SConscript()
85     that allows explicit specification of where the source files
86     for an SConscript file can be found.
87
88   - Support more easily re-usable flavors of command generators by
89     calling callable variables when strings are expanded.
90
91   From Steven Knight:
92
93   - Added an INSTALL construction variable that can be set to a function
94     to control how the Install() and InstallAs() Builders install files.
95     The default INSTALL function now copies, not links, files.
96
97   - Remove deprecated features:  the "name" argument to Builder objects,
98     and the Environment.Update() method.
99
100   - Add an Environment.SourceCode() method to support fetching files
101     from source code systems.  Add factory methods that create Builders
102     to support BitKeeper, CVS, RCS, and SCCS.  Add support for fetching
103     files from RCS or SCCS transparently (like GNU Make).
104
105   - Make the internal to_String() function more efficient.
106
107   - Make the error message the same as other build errors when there's a
108     problem unlinking a target file in preparation for it being built.
109
110   - Make TARGET, TARGETS, SOURCE and SOURCES reserved variable names and
111     warn if the user tries to set them in a construction environment.
112
113   - Add support for Tar and Zip files.
114
115   - Better documentation of the different ways to export variables to a
116     subsidiary SConscript file.  Fix documentation bugs in a tools
117     example, places that still assumed SCons split strings on white
118     space, and typos.
119
120   - Support fetching arbitrary files from the TARGETS or SOURCES lists
121     (e.g. ${SOURCES[2]}) when calculating the build signature of a
122     command.
123
124   - Don't silently swallow exceptions thrown by Scanners (or other
125     exceptions while finding a node's dependent children).
126
127   - Push files to CacheDir() before calling the superclass built()
128     method (which may clear the build signature as part of clearing
129     cached implicit dependencies, if the file has a source scanner).
130     (Bug reported by Jeff Petkau.)
131
132   - Raise an internal error if we attempt to push a file to CacheDir()
133     with a build signature of None.
134
135   - Add an explicit Exit() function for terminating early.
136
137   - Change the documentation to correctly describe that the -f option
138     doesn't change to the directory in which the specified file lives.
139     
140   - Support changing directories locally with SConscript directory
141     path names relative to any SConstruct file specified with -f.
142     This allows you to build in another directory by simply changing
143     there and pointing at the SConstruct file in another directory.
144
145   - Change the default SConscriptChdir() behavior to change to the
146     SConscript directory while it's being read.
147
148   - Fix an exception thrown when the -U option was used with no
149     Default() target specified.
150
151   - Fix -u so that it builds things in corresponding build directories
152     when used in a source directory.
153
154   From Lachlan O'Dea:
155
156   - Add SharedObject() support to the masm tool.
157
158   - Fix WhereIs() to return normalized paths.
159
160   From Jeff Petkau:
161
162   - Don't copy a built file to a CacheDir() if it's already there.
163
164   - Avoid partial copies of built files in a CacheDir() by copying
165     to a temporary file and renaming.
166
167   From Anthony Roach:
168
169   - Fix incorrect dependency-cycle errors when an Aliased source doesn't
170     exist.
171
172
173
174 RELEASE 0.11 - Tue, 11 Feb 2003 05:24:33 -0600
175
176   From Chad Austin:
177
178   - Add support for IRIX and the SGI MIPSPro tool chain.
179
180   - Support using the MSVC tool chain when running Cygwin Python.
181
182   From Michael Cook:
183
184   - Avoid losing signal bits in the exit status from a command,
185     helping terminate builds on interrupt (CTRL+C).
186
187   From Charles Crain:
188
189   - Added new AddPreAction() and AddPostAction() functions that support
190     taking additional actions before or after building specific targets.
191
192   - Add support for the PharLap ETS tool chain.
193
194   From Steven Knight:
195
196   - Allow Python function Actions to specify a list of construction
197     variables that should be included in the Action's signature.
198
199   - Allow libraries in the LIBS variable to explicitly include the prefix
200     and suffix, even when using the GNU linker.
201     (Bug reported by Neal Becker.)
202
203   - Use DOS-standard CR-LF line endings in the scons.bat file.
204     (Bug reported by Gary Ruben.)
205
206   - Doc changes:  Eliminate description of deprecated "name" keyword
207     argument from Builder definition (reported by Gary Ruben).
208
209   - Support using env.Append() on BUILDERS (and other dictionaries).
210     (Bug reported by Bj=F6rn Bylander.)
211
212   - Setting the BUILDERS construction variable now properly clears
213     the previous Builder attributes from the construction Environment.
214     (Bug reported by Bj=F6rn Bylander.)
215
216   - Fix adding a prefix to a file when the target isn't specified.
217     (Bug reported by Esa Ilari Vuokko.)
218
219   - Clean up error messages from problems duplicating into read-only
220     BuildDir directories or into read-only files.
221
222   - Add a CommandAction.strfunction() method, and add an "env" argument
223     to the FunctionAction.strfunction() method, so that all Action
224     objects have strfunction() methods, and the functions for building
225     and returning a string both take the same arguments.
226
227   - Add support for new CacheDir() functionality to share derived files
228     between builds, with related options --cache-disable, --cache-force,
229     and --cache-show.
230
231   - Change the default behavior when no targets are specified to build
232     everything in the current directory and below (like Make).  This
233     can be disabled by specifying Default(None) in an SConscript.
234
235   - Revamp SCons installation to fix a case-sensitive installation
236     on Win32 systems, and to add SCons-specific --standard-lib,
237     --standalone-lib, and --version-lib options for easier user
238     control of where the libraries get installed.
239
240   - Fix the ability to directly import and use Platform and Tool modules
241     that have been implicitly imported into an Environment().
242
243   - Add support for allowing an embedding interface to annotate a node
244     when it's created.
245
246   - Extend the SConscript() function to accept build_dir and duplicate
247     keyword arguments that function like a BuildDir() call.
248
249   From Steve Leblanc:
250
251   - Fix the output of -c -n when directories are involved, so it
252     matches -c.
253
254   From Anthony Roach:
255
256   - Use a different shared object suffix (.os) when using gcc so shared
257     and static objects can exist side-by-side in the same directory.
258
259   - Allow the same object files on Win32 to be linked into either
260     shared or static libraries.
261
262   - Cache implicit cache values when using --implicit-cache.
263
264
265
266 RELEASE 0.10 - Thu, 16 Jan 2003 04:11:46 -0600
267
268   From Derrick 'dman' Hudson:
269
270   - Support Repositories on other file systems by symlinking or
271     copying files when hard linking won't work.
272
273   From Steven Knight:
274
275   - Remove Python bytecode (*.pyc) files from the scons-local packages.
276
277   - Have FunctionActions print a description of what they're doing
278     (a representation of the Python call).
279
280   - Fix the Install() method so that, like other actions, it prints
281     what would have happened when the -n option is used.
282
283   - Don't create duplicate source files in a BuildDir when the -n
284     option is used.
285
286   - Refactor the Scanner interface to eliminate unnecessary Scanner
287     calls and make it easier to write efficient scanners.
288
289   - Added a "recursive" flag to Scanner creation that specifies the
290     Scanner should be invoked recursively on dependency files returned
291     by the scanner.
292
293   - Significant performance improvement from using a more efficient
294     check, throughout the code, for whether a Node has a Builder.
295
296   - Fix specifying only the source file to MultiStepBuilders such as
297     the Program Builder.  (Bug reported by Dean Bair.)
298
299   - Fix an exception when building from a file with the same basename as
300     the subdirectory in which it lives.  (Bug reported by Gerard Patel.)
301
302   - Fix automatic deduction of a target file name when there are
303     multiple source files specified; the target is now deduced from just
304     the first source file in the list.
305
306   - Documentation fixes: better initial explanation of SConscript files;
307     fix a misformatted "table" in the StaticObject explanation.
308
309   From Steven Knight and Steve Leblanc:
310
311   - Fix the -c option so it will remove symlinks.
312
313   From Steve Leblanc:
314
315   - Add a Clean() method to support removing user-specified targets
316     when using the -c option.
317
318   - Add a development script for running SCons through PyChecker.
319
320   - Clean up things found by PyChecker (mostly unnecessary imports).
321
322   - Add a script to use HappyDoc to create HTML class documentation.
323
324   From Lachlan O'Dea:
325
326   - Make the Environment.get() method return None by default.
327
328   From Anthony Roach:
329
330   - Add SetJobs() and GetJobs() methods to allow configuration of the
331     number of default jobs (still overridden by -j).
332
333   - Convert the .sconsign file format from ASCII to a pickled Python
334     data structure.
335
336   - Error message cleanups:  Made consistent the format of error
337     messages (now all start with "scons: ***") and warning messages (now
338     all start with "scons: warning:").  Caught more cases with the "Do
339     not know how to build" error message.
340
341   - Added support for the MinGW tool chain.
342
343   - Added a --debug=includes option.
344
345
346
347 RELEASE 0.09 - Thu,  5 Dec 2002 04:48:25 -0600
348
349   From Chad Austin:
350
351   - Add a Prepend() method to Environments, to append values to
352     the beginning of construction variables.
353
354   From Matt Balvin:
355
356   - Add long command-line support to the "lib" Tool (Microsoft library
357     archiver), too.
358
359   From Charles Crain:
360
361   - Allow $$ in a string to be passed through as $.
362
363   - Support file names with odd characters in them.
364
365   - Add support for construction variable substition on scanner
366     directories (in CPPPATH, F77PATH, LIBPATH, etc.).
367
368   From Charles Crain and Steven Knight:
369
370   - Add Repository() functionality, including the -Y option.
371
372   From Steven Knight:
373
374   - Fix auto-deduction of target names so that deduced targets end
375     up in the same subdirectory as the source.
376
377   - Don't remove source files specified on the command line!
378
379   - Suport the Intel Fortran Compiler (ifl.exe).
380
381   - Supply an error message if there are no command-line or
382     Default() targets specified.
383
384   - Fix the ASPPCOM values for the GNU assembler.
385     (Bug reported by Brett Polivka.)
386
387   - Fix an exception thrown when a Default() directory was specified
388     when using the -U option.
389
390   - Issue a warning when -c can't remove a target.
391
392   - Eliminate unnecessary Scanner calls by checking for the
393     existence of a file before scanning it.  (This adds a generic
394     hook to check an arbitrary condition before scanning.)
395
396   - Add explicit messages to tell when we're "Reading SConscript files
397     ...," "done reading SConscript files," "Building targets," and
398     "done building targets."  Add a -Q option to supress these.
399
400   - Add separate $SHOBJPREFIX and $SHOBJSUFFIX construction variables
401     (by default, the same as $OBJPREFIX and $OBJSUFFIX).
402
403   - Add Make-like error messages when asked to build a source file,
404     and before trying to build a file that doesn't have all its source
405     files (including when an invalid drive letter is used on WIN32).
406
407   - Add an scons-local-{version} package (in both .tar.gz and .zip
408     flavors) to help people who want to ship SCons as a stand-alone
409     build tool in their software packages.
410
411   - Prevent SCons from unlinking files in certain situations when
412     the -n option is used.
413
414   - Change the name of Tool/lib.py to Tool/mslib.py.
415
416   From Steven Knight and Anthony Roach:
417
418   - Man page:  document the fact that Builder calls return Node objects.
419
420   From Steve LeBlanc:
421
422   - Refactor option processing to use our own version of Greg Ward's
423     Optik module, modified to run under Python 1.5.2.
424
425   - Add a ParseConfig() command to modify an environment based on
426     parsing output from a *-config command.
427
428   From Jeff Petkau:
429
430   - Fix interpretation of '#/../foo' on Win32 systems.
431
432   From Anthony Roach:
433
434   - Fixed use of command lines with spaces in their arguments,
435     and use of Nodes with spaces in their string representation.
436
437   - Make access and modification times of files in a BuildDir match
438     the source file, even when hard linking isn't available.
439
440   - Make -U be case insensitive on Win32 systems.
441
442   - Issue a warning and continue when finding a corrupt .sconsign file.
443
444   - Fix using an alias as a dependency of a target so that if one of the
445     alias' dependencies gets rebuilt, the resulting target will, too.
446
447   - Fix differently ordered targets causing unnecessary rebuilds
448     on case insensitive systems.
449
450   - Use os.system() to execute external commands whenever the "env"
451     utility is available, which is much faster than fork()/exec(),
452     and fixes the -j option on several platforms.
453
454   - Fix use of -j with multiple targets.
455
456   - Add an Options() object for friendlier accomodation of command-
457     line arguments.
458
459   - Add support for Microsoft VC++ precompiled header (.pch) files,
460     debugger (.pdb) files, and resource (.rc) files.
461
462   - Don't compute the $_CPPINCFLAGS, $_F77INCFLAGS, $_LIBFLAGS and
463     $_LIBDIRFLAGS variables each time a command is executed, define
464     them so they're computed only as needed.  Add a new _concat
465     function to the Environment that allows people to define their
466     own similar variables.
467
468   - Fix dependency scans when $LIBS is overridden.
469
470   - Add EnsurePythonVersion() and EnsureSConsVersion() functions.
471
472   - Fix the overly-verbose stack trace on ListBuilder build errors.
473
474   - Add a SetContentSignatureType() function, allowing use of file
475     timestamps instead of MD5 signatures.
476
477   - Make -U and Default('source') fail gracefully.
478
479   - Allow the File() and Dir() methods to take a path-name string as
480     the starting directory, in addition to a Dir object.
481
482   - Allow the command handler to be selected via the SPAWN, SHELL
483     and ESCAPE construction variables.
484
485   - Allow construction variables to be overridden when a Builder
486     is called.
487
488   From sam th:
489
490   - Dynamically check for the existence of utilities with which to
491     initialize Environments by default.
492
493
494
495 RELEASE 0.08 - Mon, 15 Jul 2002 12:08:51 -0500
496
497   From Charles Crain:
498
499   - Fixed a bug with relative CPPPATH dirs when using BuildDir().
500     (Bug reported by Bob Summerwill.)
501
502   - Added a warnings framework and a --warn option to enable or
503     disable warnings.
504
505   - Make the C scanner warn users if files referenced by #include
506     directives cannot be found and --warn=dependency is specified.
507
508   - The BUILDERS construction variable should now be a dictionary
509     that maps builder names to actions.  Existing uses of lists,
510     and the Builder name= keyword argument, generate warnings
511     about use of deprecated features.
512
513   - Removed the "shared" keyword argument from the Object and
514     Library builders.
515     
516   - Added separated StaticObject, SharedObject, StaticLibrary and
517     SharedLibrary builders.  Made Object and Library synonyms for
518     StaticObject and StaticLibrary, respectively.
519
520   - Add LIBS and LIBPATH dependencies for shared libraries.
521
522   - Removed support for the prefix, suffix and src_suffix arguments
523     to Builder() to be callable functions.
524
525   - Fix handling file names with multiple dots.
526
527   - Allow a build directory to be outside of the SConstruct tree.
528
529   - Add a FindFile() function that searches for a file node with a
530     specified name.
531
532   - Add $CPPFLAGS to the shared-object command lines for g++ and gcc.
533
534   From Charles Crain and Steven Knight:
535
536   - Add a "tools=" keyword argument to Environment instantiation,
537     and a separate Tools() method, for more flexible specification
538     of tool-specific environment changes.
539
540   From Steven Knight:
541
542   - Add a "platform=" keyword argument to Environment instantiation,
543     and a separate Platform() method, for more flexible specification
544     of platform-specific environment changes.
545
546   - Updated README instructions and setup.py code to catch an
547     installation failure from not having distutils installed.
548
549   - Add descriptions to the -H help text for -D, -u and -U so
550     people can tell them apart.
551
552   - Remove the old feature of automatically splitting strings
553     of file names on white space.
554
555   - Add a dependency Scanner for native Fortran "include" statements,
556     using a new "F77PATH" construction variable.
557
558   - Fix C #include scanning to detect file names with characters like
559     '-' in them.
560
561   - Add more specific version / build output to the -v option.
562
563   - Add support for the GNU as, Microsoft masm, and nasm assemblers.
564
565   - Allow the "target" argument to a Builder call to be omitted, in
566     which case the target(s) are deduced from the source file(s) and the
567     Builder's specified suffix.
568
569   - Add a tar archive builder.
570
571   - Add preliminary support for the OS/2 Platform, including the icc
572     and ilink Tools.
573
574   From Jeff Petkau:
575
576   - Fix --implicit-cache if the scanner returns an empty list.
577
578   From Anthony Roach:
579
580   - Add a "multi" keyword argument to Builder creation that specifies
581     it's okay to call the builder multiple times for a target.
582
583   - Set a "multi" on Aliases so multiple calls will append to an Alias.
584
585   - Fix emitter functions' use of path names when using BuildDir or
586     in subdirectories.
587
588   - Fix --implicit-cache causing redundant rebuilds when the header
589     file list changed.
590
591   - Fix --implicit-cache when a file has no implicit dependencies and
592     its source is generated.
593
594   - Make the drive letters on Windows always be the same case, so that
595     changes in the case of drive letters don't cause a rebuild.
596
597   - Fall back to importing the SCons.TimeStamp module if the SCons.MD5
598     module can't be imported.
599
600   - Fix interrupt handling to guarantee that a single interrupt will
601     halt SCons both when using -j and not.
602
603   - Fix .sconsign signature storage so that output files of one build
604     can be safely used as input files to another build.
605
606   - Added a --debug=time option to print SCons execution times.
607
608   - Print an error message if a file can't be unlinked before being
609     built, rather than just silently terminating the build.
610
611   - Add a SideEffect() method that can be used to tell the build
612     engine that a given file is created as a side effect of building
613     a target.  A file can be specified as a side effect of more than
614     one build comand, in which case the commands will not be executed
615     simultaneously.
616
617   - Significant performance gains from not using our own version of
618     the inefficient stock os.path.splitext() method, caching source
619     suffix computation, code cleanup in MultiStepBuilder.__call__(),
620     and replicating some logic in scons_subst().
621
622   - Add --implicit-deps-changed and --implicit-deps-unchanged options.
623
624   - Add a GetLaunchDir() function.
625
626   - Add a SetBuildSignatureType() function.
627
628   From Zed Shaw:
629
630   - Add an Append() method to Environments, to append values to
631     construction variables.
632
633   - Change the name of Update() to Replace().  Keep Update() as a
634     deprecated synonym, at least for now.
635
636   From Terrel Shumway:
637
638   - Use a $PYTHON construction variable, initialized to sys.executable,
639     when using Python to build parts of the SCons packages.
640
641   - Use sys.prefix, not sys.exec_prefix, to find pdb.py.
642
643
644
645 RELEASE 0.07 - Thu,  2 May 2002 13:37:16 -0500
646
647   From Chad Austin:
648
649   - Changes to build SCons packages on IRIX (and other *NIces).
650
651   - Don't create a directory Node when a file already exists there,
652     and vice versa.
653
654   - Add 'dirs' and 'names' keyword arguments to SConscript for
655     easier specification of subsidiary SConscript files.
656
657   From Charles Crain:
658
659   - Internal cleanup of environment passing to function Actions.
660
661   - Builders can now take arbitrary keyword arguments to create
662     attributes to be passed to: command generator functions,
663     FunctionAction functions, Builder emitter functions (below),
664     and prefix/suffix generator functions (below).
665
666   - Command generator functions can now return ANYTHING that can be
667     converted into an Action (a function, a string, a CommandGenerator
668     instance, even an ActionBase instance).
669
670   - Actions now call get_contents() with the actual target and source
671     nodes used for the build.
672
673   - A new DictCmdGenerator class replaces CompositeBuilder to support
674     more flexible Builder behavior internally.
675
676   - Builders can now take an emitter= keyword argument.  An emitter
677     is a function that takes target, source, and env argument, then
678     return a 2-tuple of (new sources, new targets).  The emitter is
679     called when the Builder is __call__'ed, allowing a user to modify
680     source and target lists.
681
682   - The prefix, suffix and src_suffix Builder arguments now take a
683     callable as well a string.  The callable is passed the Environment
684     and any extra Builder keyword arguments and is expected to return
685     the appropriate prefix or suffix.
686
687   - CommandActions can now be a string, a list of command + argument
688     strings, or a list of commands (strings or lists).
689
690   - Added shared library support.  The Object and Library Builders now
691     take a "shared=1" keyword argument to specify that a shared object
692     or shared library should be built.  It is an error to try to build
693     static objects into a shared library or vice versa.
694
695   - Win32 support for .def files has been added.  Added the Win32-specific
696     construction variables $WIN32DEFPREFIX, $WIN32DEFSUFFIX,
697     $WIN32DLLPREFIX and $WIN32IMPLIBPREFIX.  When building a .dll,
698     the new construction variable $WIN32_INSERT_DEF, controls whether
699     the appropriately-named .def file is inserted into the target
700     list (if not already present).  A .lib file is always added to
701     a Library build if not present in the list of targets.
702
703   - ListBuilder now passes all targets to the action, not just the first.
704
705   - Fix so that -c now deletes generated yacc .h files.
706
707   - Builder actions and emitter functions can now be initialized, through
708     construction variables, to things other than strings.
709
710   - Make top-relative '#/dir' lookups work like '#dir'.
711
712   - Fix for relative CPPPATH directories in subsidiary SConscript files
713     (broken in 0.06).
714
715   - Add a for_signature argument to command generators, so that
716     generators that need to can return distinct values for the
717     command signature and for executing the command.
718
719   From Alex Jacques:
720
721   - Create a better scons.bat file from a py2bat.py script on the Python
722     mailing list two years ago (modeled after pl2bat.pl).
723
724   From Steven Knight:
725
726   - Fix so that -c -n does *not* remove the targets!
727
728   - Man page:  Add a hierarchical libraries + Program example.
729
730   - Support long MSVC linker command lines through a builder action
731     that writes to a temporary file and uses the magic MSVC "link @file"
732     argument syntax if the line is longer than 2K characters.
733
734   - Fix F77 command-line options on Win32 (use /Fo instead of -o).
735
736   - Use the same action to build from .c (lower case) and .C (upper
737     case) files on case-insensitive systems like Win32.
738
739   - Support building a PDF file directly from a TeX or LaTeX file
740     using pdftex or pdflatex.
741
742   - Add a -x option to runtest.py to specify the script being tested.
743     A -X option indicates it's an executable, not a script to feed
744     to the Python interpreter.
745
746   - Add a Split() function (identical to SCons.Util.argmunge()) for use
747     in the next release, when Builders will no longer automatically split
748     strings on white space.
749
750   From Steve Leblanc:
751
752   - Add the SConscriptChdir() method.
753
754   From Anthony Roach:
755
756   - Fix --debug=tree when used with directory targets.
757
758   - Significant internal restructuring of Scanners and Taskmaster.
759
760   - Added new --debug=dtree option.
761
762   - Fixes for --profile option.
763
764   - Performance improvement in construction variable substitution.
765
766   - Implemented caching of content signatures, plus added --max-drift
767     option to control caching.
768
769   - Implemented caching of dependency signatures, enabled by new
770     --implicit-cache option.
771
772   - Added abspath construction variable modifier.
773
774   - Added $SOURCE variable as a synonym for $SOURCES[0].
775
776   - Write out .sconsign files on error or interrupt so intermediate
777     build results are saved.
778
779   - Change the -U option to -D.  Make a new -U that builds just the
780     targets from the local SConscript file.
781
782   - Fixed use of sys.path so Python modules can be imported from
783     the SConscript directory.
784
785   - Fix for using Aliases with the -u, -U and -D options.
786
787   - Fix so that Nodes can be passed to SConscript files.
788
789   From Moshe Zadka:
790   
791   - Changes for official Debian packaging.
792
793
794
795 RELEASE 0.06 - Thu, 28 Mar 2002 01:24:29 -0600
796
797   From Charles Crain:
798
799   - Fix command generators to expand construction variables.
800
801   - Make FunctionAction arguments be Nodes, not strings.
802
803   From Stephen Kennedy:
804
805   - Performance:  Use a dictionary, not a list, for a Node's parents.
806
807   From Steven Knight:
808
809   - Add .zip files to the packages we build.
810
811   - Man page:  document LIBS, fix a typo, document ARGUMENTS.
812
813   - Added RANLIB and RANLIBFLAGS construction variables.  Only use them
814     in ARCOM if there's a "ranlib" program on the system.
815
816   - Add a configurable CFILESUFFIX for the Builder of .l and .y files
817     into C files.
818
819   - Add a CXXFile Builder that turns .ll and .yy files into .cc files
820     (configurable via a CXXFILESUFFIX construction variable).
821
822   - Use the POSIX-standard lex -t flag, not the GNU-specific -o flag.
823     (Bug reported by Russell Christensen.)
824
825   - Fixed an exception when CPPPATH or LIBPATH is a null string.
826     (Bug reported by Richard Kiss.)
827
828   - Add a --profile=FILE option to make profiling SCons easier.
829
830   - Modify the new DVI builder to create .dvi files from LaTeX (.ltx
831     and .latex) files.
832
833   - Add support for Aliases (phony targets).
834
835   - Add a WhereIs() method for searching for path names to executables.
836
837   - Add PDF and PostScript document builders.
838
839   - Add support for compiling Fortran programs from a variety of
840     suffixes (a la GNU Make):  .f, .F, .for, .FOR, .fpp and .FPP
841
842   - Support a CPPFLAGS variable on all default commands that use the
843     C preprocessor.
844
845   From Steve Leblanc:
846
847   - Add support for the -U option.
848
849   - Allow CPPPATH, LIBPATH and LIBS to be specified as white-space
850     separated strings.
851
852   - Add a document builder to create .dvi files from TeX (.tex) files.
853
854   From Anthony Roach:
855
856   - Fix:  Construction variables with values of 0 were incorrectly
857     interpolated as ''. 
858
859   - Support env['VAR'] to fetch construction variable values.
860
861   - Man page:  document Precious().
862
863
864
865 RELEASE 0.05 - Thu, 21 Feb 2002 16:50:03 -0600
866
867   From Chad Austin:
868
869   - Set PROGSUFFIX to .exe under Cygwin.
870
871   From Charles Crain:
872
873   - Allow a library to specified as a command-line source file, not just
874     in the LIBS construction variable.
875
876   - Compensate for a bug in os.path.normpath() that returns '' for './'
877     on WIN32.
878
879   - More performance optimizations:  cache #include lines from files,
880     eliminate unnecessary calls.
881
882   - If a prefix or suffix contains white space, treat the resulting
883     concatenation as separate arguments.
884
885   - Fix irregularities in the way we fetch DevStudio information from
886     the Windows registry, and in our registry error handling.
887
888   From Steven Knight:
889
890   - Flush stdout after print so it intermixes correctly with stderr
891     when redirected.
892
893   - Allow Scanners to return a list of strings, and document how to
894     write your own Scanners.
895
896   - Look up implicit (scanned) dependencies relative to the directory
897     of file being scanned.
898
899   - Make writing .sconsign files more robust by first trying to write
900     to a temp file that gets renamed.
901
902   - Create all of the directories for a list of targets before trying
903     to build any of the targets.
904
905   - WIN32 portability fixes in tests.
906
907   - Allow the list of variables exported to an SConscript file to be
908     a UserList, too.
909
910   - Document the overlooked LIBPATH construction variable.
911     (Bug reported by Eicke Godehardt.)
912
913   - Fix so that Ignore() ignores indirect, implicit dependencies
914     (included files), not just direct dependencies.
915
916   - Put the man page in the Debian distribution.
917
918   - Run HTML docs through tidy to clean up the HTML (for Konqueror).
919
920   - Add preliminary support for Unicode strings.
921
922   - Efficiency:  don't scan dependencies more than once during the
923     walk of a tree.
924
925   - Fix the -c option so it doesn't stop removing targets if one doesn't
926     already exist.
927     (Bug reported by Paul Connell.)
928
929   - Fix the --debug=pdb option when run on Windows NT.
930     (Bug reported by Paul Connell.)
931
932   - Add support for the -q option.
933
934   From Steve Leblanc:
935
936   - Add support for the -u option.
937
938   - Add .cc and .hh file suffixes to the C Scanner.
939
940   From Anthony Roach:
941
942   - Make the scons script return an error code on failures.
943
944   - Add support for using code to generate a command to build a target.
945
946
947
948 RELEASE 0.04 - Wed, 30 Jan 2002 11:09:42 -0600
949
950   From Charles Crain:
951
952   - Significant performance improvements in the Node.FS and
953     Scanner subsystems.
954
955   - Fix signatures of binary files on Win32 systems.
956
957   - Allow LIBS and LIBPATH to be strings, not just arrays.
958
959   - Print a traceback if a Python-function builder throws an exception.
960
961   From Steven Knight:
962
963   - Fix using a directory as a Default(), and allow Default() to
964     support white space in file names for strings in arrays.
965
966   - Man page updates:  corrected some mistakes, documented various
967     missing Environment methods, alphabetized the construction
968     variables and other functions, defined begin and end macros for
969     the example sections, regularized white space separation, fixed
970     the use of Export() in the Multiple Variants example.
971
972   - Function action fixes:  None is now a successful return value.
973     Exceptions are now reported.  Document function actions.
974
975   - Add 'Action' and 'Scanner' to the global keywords so SConscript
976     files can use them too.
977
978   - Removed the Wrapper class between Nodes and Walkers.
979
980   - Add examples using Library, LIBS, and LIBPATH.
981
982   - The C Scanner now always returns a sorted list of dependencies
983     so order changes don't cause unnecessary rebuilds.
984
985   - Strip $(-$) bracketed text from command lines.  Use this to
986     surround $_INCDIRS and $_LIBDIRS so we don't rebuild in response
987     to changes to -I or -L options.
988
989   - Add the Ignore() method to ignore dependencies.
990
991   - Provide an error message when a nonexistent target is specified
992     on the command line.
993
994   - Remove targets before building them, and add an Environment
995     Precious() method to override that.
996
997   - Eliminate redundant calls to the same builder when the target is a
998     list of targets:  Add a ListBuilder class that wraps Builders to
999     handle lists atomically.  Extend the Task class to support building
1000     and updating multiple targets in a single Task.  Simplify the
1001     interface between Task and Taskmaster.
1002
1003   - Add a --debug=pdb option to re-run SCons under the Python debugger.
1004
1005   - Only compute a build signature once for each node.
1006
1007   - Changes to our sys.path[] manipulation to support installation into
1008     an arbitrary --prefix value.
1009
1010   From Steve Leblanc:
1011
1012   - Add var=value command-line arguments.
1013
1014
1015
1016 RELEASE 0.03 - Fri, 11 Jan 2002 01:09:30 -0600
1017
1018   From Charles Crain:
1019
1020   - Performance improvements in the Node.FS and Sig.Calculator classes.
1021
1022   - Add the InstallAs() method.
1023
1024   - Execute commands through an external interpreter (sh, cmd.exe, or
1025     command.com) to handle redirection metacharacters.
1026
1027   - Allow the user to supply a command handler.
1028
1029   From Steven Knight:
1030
1031   - Search both /usr/lib and /usr/local/lib for scons directories by
1032     adding them both to sys.path, with whichever is in sys.prefix first.
1033
1034   - Fix interpreting strings of multiple white-space separated file names
1035     as separate file names, allowing prefixes and suffixes to be appended
1036     to each individually.
1037
1038   - Refactor to move CompositeBuilder initialization logic from the
1039     factory wrapper to the __init__() method, and allow a Builder to
1040     have both an action and a src_builder (or array of them).
1041
1042   - Refactor BuilderBase.__call__() to separate Node creation/lookup
1043     from initialization of the Node's builder information.
1044
1045   - Add a CFile Builder object that supports turning lex (.l) and
1046     yacc (.y) files into .c files.
1047
1048   - Document: variable interpretation attributes; how to propogate
1049     the user's environment variables to executed commands; how to
1050     build variants in multiple BuildDirs.
1051
1052   - Collect String, Dict, and List type-checking in common utility
1053     routines so we can accept User{String,Dict,List}s all over.
1054
1055   - Put the Action factory and classes into their own module.
1056
1057   - Use one CPlusPlusAction in the Object Builder's action dictionary,
1058     instead of letting it create multiple identical instances.
1059
1060   - Document the Install() and InstallAs() methods.
1061
1062   From Steve Leblanc:
1063
1064   - Require that a Builder be given a name argument, supplying a
1065     useful error message when it isn't.
1066
1067   From Anthony Roach:
1068
1069   - Add a "duplicate" keyword argument to BuildDir() that can be set
1070     to prevent linking/copying source files into build directories.
1071
1072   - Add a "--debug=tree" option to print an ASCII dependency tree.
1073
1074   - Fetch the location of the Microsoft Visual C++ compiler(s) from
1075     the Registry, instead of hard-coding the location.
1076     
1077   - Made Scanner objects take Nodes, not path names.
1078     
1079   - Have the C Scanner cache the #include file names instead of
1080     (re-)scanning the file each time it's called.
1081
1082   - Created a separate class for parent "nodes" of file system roots,
1083     eliminating the need for separate is-parent-null checks everywhere.
1084     
1085   - Removed defined __hash__() and __cmp() methods from FS.Entry, in
1086     favor of Python's more efficient built-in identity comparisons.
1087
1088
1089
1090 RELEASE 0.02 - Sun, 23 Dec 2001 19:05:09 -0600
1091
1092   From Charles Crain:
1093
1094   - Added the Install(), BuildDir(), and Export() methods.
1095
1096   - Fix the -C option by delaying setting the top of the FS tree.
1097
1098   - Avoid putting the directory path on the libraries in the LIBS
1099     construction variable.
1100
1101   - Added a GetBuildPath() method to return the full path to the
1102     Node for a specified string.
1103
1104   - Fixed variable substitution in CPPPATH and LIBPATH.
1105
1106   From Steven Knight:
1107
1108   - Fixed the version comment in the scons.bat (the UNIX geek used
1109     # instead of @rem).
1110
1111   - Fix to setup.py so it doesn't require a sys.argv[1] argument.
1112
1113   - Provide make-like warning message for "command not found" and
1114     similar errors.
1115
1116   - Added an EXAMPLES section to the man page.
1117
1118   - Make Default() targets properly relative to their SConscript
1119     file's subdirectory.
1120
1121   From Anthony Roach:
1122
1123   - Documented CXXFLAGS, CXXCOM, and CPPPATH.
1124
1125   - Fixed SCONS_LIB_DIR to work as documented.
1126
1127   - Made Default() accept Nodes as arguments.
1128
1129   - Changed Export() to make it easier to use.
1130   
1131   - Added the Import() and Return() methods.
1132
1133
1134
1135 RELEASE 0.01 - Thu Dec 13 19:25:23 CST 2001
1136
1137 A brief overview of important functionality available in release 0.01:
1138
1139   - C and C++ compilation on POSIX and Windows NT.
1140
1141   - Automatic scanning of C/C++ source files for #include dependencies.
1142
1143   - Support for building libraries; setting construction variables
1144     allows creation of shared libraries.
1145
1146   - Library and C preprocessor search paths.
1147
1148   - File changes detected using MD5 signatures.
1149
1150   - User-definable Builder objects for building files.
1151
1152   - User-definable Scanner objects for scanning for dependencies.
1153
1154   - Parallel build (-j) support.
1155
1156   - Dependency cycles detected.
1157
1158   - Linux packages available in RPM and Debian format.
1159
1160   - Windows installer available.