249b0787aa84198fb0b910d522017251ad4a7275
[scons.git] / src / CHANGES.txt
1 r __COPYRIGHT__
2 # __FILE__ __REVISION__ __DATE__ __DEVELOPER__
3
4
5                  SCons - a software construction tool
6
7                             Change Log
8
9
10
11 RELEASE 0.95 - XXX
12
13   From Chad Austin:
14
15   - Replace print statements with calls to sys.stdout.write() so output
16     lines stay together when -j is used.
17
18   - Add portability fixes for a number of tests.
19
20   - Accomodate the fact that Cygwin's os.path.normcase() lies about
21     the underlying system being case-sensitive.
22
23   - Fix an incorrect _concat() call in the $RCINCFLAGS definition for
24     the mingw Tool.
25
26   - Fix a problem with the msvc tool with Python versions prior to 2.3.
27
28   - Add support for a "toolpath" Tool() and Environment keyword that
29     allows Tool modules to be found in specified local directories.
30
31   - Work around Cygwin Python's silly fiction that it's using a
32     case-sensitive file system.
33
34   From Chris Burghart:
35
36   - Fix the ability to save/restore a PackageOption to a file.
37
38   From David M. Cooke:
39
40   - Make the Fortran scanner case-insensitive for the INCLUDE string.
41
42   From Charles Crain:
43
44   - If no version of MSVC is detected but the tool is specified,
45     use the MSVC 6.0 paths by default.
46
47   - Ignore any "6.1" version of MSVC found in the registry; this is a
48     phony version number (created by later service packs?) and would
49     throw off the logic if the user had any non-default paths configure.
50
51   - Correctly detect if the user has independently configured the MSVC
52     "include," "lib" or "path" in the registry and use the appropriate
53     values.  Previously, SCons would only use the values if all three
54     were set in the registry.
55
56   - Make sure side-effect nodes are prepare()d before building their
57     corresponding target.
58
59   - Preserve the ability to call BuildDir() multiple times with the
60     same target and source directory arguments.
61
62   From Scott Lystig Fritchie:
63
64   - Fix the ability to use a custom _concat() function in the
65     construction environment when calling _stripixes().
66
67   - Make the message about ignoring a missing SConscript file into a
68     suppressable Warning, not a hard-coded sys.stderr.write().
69
70   - If a builder can be called multiple times for a target (because
71     the sources and overrides are identical, or it's a builder with the
72     "multi" flag set), allow the builder to be called through multiple
73     environments so long as the builders have the same signature for
74     the environments in questions (that is, they're the same action).
75
76   From Steven Knight:
77
78   - Fix EnsureSConsVersion() so it checks against the SCons version,
79     not the Python version, on Pythons with sys.version_info.
80
81   - Don't swallow the AttributeError when someone uses an expansion like
82     $TARGET.bak, so we can supply a more informative error message.
83
84   - Fix an odd double-quote escape sequence in the man page.
85
86   - Fix looking up a naked drive letter as a directory (Dir('C:')).
87
88   - Support using File nodes in the LIBS construction variable.
89
90   - Allow the LIBS construction variable to be a single string or File
91     node, not a list, when only one library is needed.
92
93   - Fix typos in the man page:  JAVACHDIR => JARCHDIR; add "for_signature"
94     to the __call__() example in the "Variable Substitution" section.
95
96   - Correct error message spellings of "non-existant" to "non-existent."
97
98   - When scanning for libraries to link with, don't append $LIBPREFIXES
99     or $LIBSUFFIXES values to the $LIBS values if they're already present.
100
101   - Add a ZIPCOMPRESSION construction variable to control whether the
102     internal Python action for the Zip Builder compresses the file or
103     not.  The default value is zipfile.ZIP_DEFLATED, which generates
104     a compressed file.
105
106   - Refactor construction variable expansion to support recursive
107     expansion of variables (e.g. CCFLAGS = "$CCFLAGS -g") without going
108     into an infinite loop.
109
110   - Fix calling Configure() from more than one subsidiary SConscript file.
111
112   From Vincent Risi:
113
114   - Add support for the bcc32, ilink32 and tlib Borland tools.
115
116   From Anthony Roach:
117
118   - Supply an error message if the user tries to configure a BuildDir
119     for a directory that already has one.
120
121   - Remove documentation of the still-unimplemented -e option.
122
123   - Add -H help text listing the legal --debug values.
124
125   - Don't choke if a construction variable is a non-string value.
126
127
128
129 RELEASE 0.94 - Fri, 07 Nov 2003 05:29:48 -0600
130
131   From Hartmut Goebel:
132
133   - Add several new types of canned functions to help create options:
134     BoolOption(), EnumOption(), ListOption(), PackageOption(),
135     PathOption().
136
137   From Steven Knight:
138
139   - Fix use of CPPDEFINES with C++ source files.
140
141   - Fix env.Append() when the operand is an object with a __cmp__()
142     method (like a Scanner instance).
143
144   - Fix subclassing the Environment and Scanner classes.
145
146   - Add BUILD_TARGETS, COMMAND_LINE_TARGETS and DEFAULT_TARGETS variables.
147
148   From Steve Leblanc:
149
150   - SGI fixes:  Fix C++ compilation, add a separate Tool/sgic++.py module.
151
152   From Gary Oberbrunner:
153
154   - Fix how the man page un-indents after examples in some browsers.
155
156   From Vincent Risi:
157
158   - Fix the C and C++ tool specifications for AIX.
159
160
161
162 RELEASE 0.93 - Thu, 23 Oct 2003 07:26:55 -0500
163
164   From J.T. Conklin:
165
166   - On POSIX, execute commands with the more modern os.spawnvpe()
167     function, if it's available.
168
169   - Scan .S, .spp and .SPP files for C preprocessor dependencies.
170
171   - Refactor the Job.Parallel() class to use a thread pool without a
172     condition variable.  This improves parallel build performance and
173     handles keyboard interrupts properly when -j is used.
174
175   From Charles Crain:
176
177   - Add support for a JARCHDIR variable to control changing to a
178     directory using the jar -C option.
179
180   - Add support for detecting Java manifest files when using jar,
181     and specifying them using the jar m flag.
182
183   - Fix some Python 2.2 specific things in various tool modules.
184
185   - Support directories as build sources, so that a rebuild of a target
186     can be triggered if anything underneath the directory changes.
187
188   - Have the scons.bat and scons.py files look for the SCons modules
189     in site-packages as well.
190
191   From Christian Engel:
192
193   - Support more flexible inclusion of separate C and C++ compilers.
194
195   - Use package management tools on AIX and Solaris to find where
196     the comilers are installed, and what version they are.
197
198   - Add support for CCVERSION and CXXVERSION variables for a number
199     of C and C++ compilers.
200
201   From Sergey Fogel:
202
203   - Add test cases for the new capabilities to run bibtex and to rerun
204     latex as needed.
205
206   From Ralf W. Grosse-Kunstleve:
207
208   - Accomodate anydbm modules that don't have a sync() method.
209
210   - Allow SConsignFile() to take an argument specifying the DBM
211     module to be used.
212
213   From Stephen Kennedy:
214
215   - Add support for a configurable global .sconsign.dbm file which
216     can be used to avoid cluttering each directory with an individual
217     .sconsign file.
218
219   From John Johnson:
220
221   - Fix (re-)scanning of dependencies in generated or installed
222     header files.
223
224   From Steven Knight:
225
226   - The -Q option suppressed too many messages; fix it so that it only
227     suppresses the Reading/Building messages.
228
229   - Support #include when there's no space before the opening quote
230     or angle bracket.
231
232   - Accomodate alphanumeric version strings in EnsurePythonVersion().
233
234   - Support arbitrary expansion of construction variables within
235     file and directory arguments to Builder calls and Environment methods.
236
237   - Add Environment-method versions of the following global functions:
238     Action(), AddPostAction(), AddPreAction(), Alias(), Builder(),
239     BuildDir(), CacheDir(), Clean(), Configure(), Default(),
240     EnsurePythonVersion(), EnsureSConsVersion(), Environment(),
241     Exit(), Export(), FindFile(), GetBuildPath(), GetOption(), Help(),
242     Import(), Literal(), Local(), Platform(), Repository(), Scanner(),
243     SConscriptChdir(), SConsignFile(), SetOption(), SourceSignatures(),
244     Split(), TargetSignatures(), Tool(), Value().
245
246   - Add the following global functions that correspond to the same-named
247     Environment methods:  AlwaysBuild(), Command(), Depends(), Ignore(),
248     Install(), InstallAs(), Precious(), SideEffect() and SourceCode().
249
250   - Add the following global functions that correspond to the default
251     Builder methods supported by SCons: CFile(), CXXFile(), DVI(), Jar(),
252     Java(), JavaH(), Library(), M4(), MSVSProject(), Object(), PCH(),
253     PDF(), PostScript(), Program(), RES(), RMIC(), SharedLibrary(),
254     SharedObject(), StaticLibrary(), StaticObject(), Tar(), TypeLibrary()
255     and Zip().
256
257   - Rearrange the man page to show construction environment methods and
258     global functions in the same list, and to explain the difference.
259
260   - Alphabetize the explanations of the builder methods in the man page.
261
262   - Rename the Environment.Environment class to Enviroment.Base.
263     Allow the wrapping interface to extend an Environment by using its own
264     subclass of Environment.Base and setting a new Environment.Environment
265     variable as the calling entry point.
266
267   - Deprecate the ParseConfig() global function in favor of a same-named
268     construction environment method.
269
270   - Allow the Environment.WhereIs() method to take explicit path and
271     pathext arguments (like the underlying SCons.Util.WhereIs() function).
272
273   - Remove the long-obsolete {Get,Set}CommandHandler() functions.
274
275   - Enhance env.Append() to suppress null values when appropriate.
276
277   - Fix ParseConfig() so it works regardless of initial construction
278     variable values.
279
280     Extend CheckHeader(), CheckCHeader(), CheckCXXHeader() and
281     CheckLibWithHeader() to accept a list of header files that will be
282     #included in the test.  The last one in the list is assumed to be
283     the one being checked for.  (Prototype code contributed by Gerard
284     Patel and Niall Douglas).
285
286   - Supply a warning when -j is used and threading isn't built in to
287     the current version of Python.
288
289   - First release of the User's Guide (finally, and despite a lot
290     of things still missing from it...).
291
292   From Clark McGrew:
293
294   - Generalize the action for .tex files so that it will decide whether
295     a file is TeX or LaTeX, check the .aux output to decide if it should
296     run bibtex, and check the .log output to re-run LaTeX if needed.
297
298   From Bram Moolenaar:
299
300   - Split the non-SCons-specific functionality from SConf.py to a new,
301     re-usable Conftest.py module.
302
303   From Gary Oberbrunner:
304
305   - Allow a directory to be the target or source or dependency of a
306     Depends(), Ignore(), Precious() or SideEffect() call.
307
308   From Gerard Patel:
309
310   - Use the %{_mandir} macro when building our RPM package.
311
312   From Marko Rauhamaa:
313
314   - Have the closing message say "...terminated because of errors" if
315     there were any.
316
317   From Anthony Roach:
318
319   - On Win32 systems, only use "rm" to delete files if Cygwin is being
320     used.   ("rm" doesn't understand Win32-format path names.)
321
322   From Christoph Wiedemann:
323
324   - Fix test/SWIG.py to find the Python include directory in all cases.
325
326   - Fix a bug in detection of Qt installed on the local system.
327
328   - Support returning Python 2.3 BooleanType values from Configure checks.
329
330   - Provide an error message if someone mistakenly tries to call a
331     Configure check from within a Builder function.
332
333   - Support calling a Builder when a Configure context is still open.
334
335   - Handle interrupts better by eliminating all try:-except: blocks
336     which caught any and all exceptions, including KeyboardInterrupt.
337
338
339
340 RELEASE 0.92 - Wed, 20 Aug 2003 03:45:28 -0500
341
342   From Charles Crain and Gary Oberbrunner:
343
344   - Fix Tool import problems with the Intel and PharLap linkers.
345
346   From Steven Knight
347
348   - Refactor the DictCmdGenerator class to be a Selector subclass.
349
350   - Allow the DefaultEnvironment() function to take arguments and pass
351     them to instantiation of the default construction environment.
352
353   - Update the Debian package so it uses Python 2.2 and more closely
354     resembles the currently official Debian packaging info.
355
356   From Gerard Patel
357
358   - When the yacc -d flag is used, take the .h file base name from the
359     target .c file, not the source (matching what yacc does).
360
361
362
363 RELEASE 0.91 - Thu, 14 Aug 2003 13:00:44 -0500
364
365   From Chad Austin:
366
367   - Support specifying a list of tools when calling Environment.Copy().
368
369   - Give a Value Nodes a timestamp of the system time when they're
370     created, so they'll work when using timestamp-based signatures.
371
372   - Add a DefaultEnvironment() function that only creates a default
373     environment on-demand (for fetching source files, e.g.).
374
375   - Portability fix for test/M4.py.
376
377   From Steven Knight:
378
379   - Tighten up the scons -H help output.
380
381   - When the input yacc file ends in .yy and the -d flag is specified,
382     recognize that a .hpp file (not a .h file) will be created.
383
384   - Make builder prefixes work correctly when deducing a target
385     from a source file name in another directory.
386
387   - Documentation fixes: typo in the man page; explain up-front about
388     not propagating the external environment.
389
390   - Use "cvs co -d" instead of "cvs co -p >" when checking out something
391     from CVS with a specified module name.  This avoids zero-length
392     files when there is a checkout error.
393
394   - Add an "sconsign" script to print the contents of .sconsign files.
395
396   - Speed up maintaining the various lists of Node children by using
397     dictionaries to avoid "x in list" searches.
398
399   - Cache the computed list of Node children minus those being Ignored
400     so it's only calculated once.
401
402   - Fix use of the --cache-show option when building a Program()
403     (or using any other arbitrary action) by making sure all Action
404     instances have strfunction() methods.
405
406   - Allow the source of Command() to be a directory.
407
408   - Better error handling of things like raw TypeErrors in SConscripts.
409
410   - When installing using "setup.py install --prefix=", suppress the
411     distutils warning message about adding the (incorrect) library
412     directory to your search path.
413
414   - Correct the spelling of the "validater" option to "validator."
415     Add a DeprecatedWarning when the old spelling is used.
416
417   - Allow a Builder's emitter to be a dictionary that maps source file
418     suffixes to emitter functions, using the suffix of the first file
419     in the source list to pick the right one.
420
421   - Refactor the creation of the Program, *Object and *Library Builders
422     so that they're moved out of SCons.Defaults and created on demand.
423
424   - Don't split SConscript file names on white space.
425
426   - Document the SConscript function's "dirs" and "name" keywords.
427
428   - Remove the internal (and superfluous) SCons.Util.argmunge() function.
429
430   - Add /TP to the default CXXFLAGS for msvc, so it can compile all
431     of the suffixes we use as C++ files.
432
433   - Allow the "prefix" and "suffix" attributes of a Builder to be
434     callable objects that return generated strings, or dictionaries
435     that map a source file suffix to the right prefix/suffix.
436
437   - Support a MAXLINELINELENGTH construction variable on Win32 systems
438     to control when a temporary file is used for long command lines.
439
440   - Make how we build .rpm packages not depend on the installation
441     locations from the distutils being used.
442
443   - When deducing a target Node, create it directly from the first
444     source Node, not by trying to create the right string to pass to
445     arg2nodes().
446
447   - Add support for SWIG.
448
449   From Bram Moolenaar:
450
451   - Test portability fixes for FreeBSD.
452
453   From Gary Oberbrunner:
454
455   - Report the target being built in error messages when building
456     multiple sources from different extensions, or when the target file
457     extension can't be deduced, or when we don't have an action for a
458     file suffix.
459
460   - Provide helpful error messages when the arguments to env.Install()
461     are incorrect.
462
463   - Fix the value returned by the Node.prevsiginfo() method to conform
464     to a previous change when checking whether a node is current.
465
466   - Supply a stack trace if the Taskmaster catches an exception.
467
468   - When using a temporary file for a long link line on Win32 systems,
469     (also) print the command line that is being executed through the
470     temporary file.
471
472   - Initialize the LIB environment variable when using the Intel
473     compiler (icl).
474
475   - Documentation fixes:  better explain the AlwaysBuild() function.
476
477   From Laurent Pelecq:
478
479   - When the -debug=pdb option is specified, use pdb.Pdb().runcall() to
480     call pdb directly, don't call Python recursively.
481
482   From Ben Scott:
483
484   - Add support for a platform-independent CPPDEFINES variable.
485
486   From Christoph Wiedemann:
487
488   - Have the g++ Tool actually use g++ in preference to c++.
489
490   - Have the gcc Tool actually use gcc in preference to cc.
491
492   - Add a gnutools.py test of the GNU tool chain.
493
494   - Be smarter about linking: use $CC by default and $CXX only if we're
495     linking with any C++ objects.
496
497   - Avoid SCons hanging when a piped command has a lot of output to read.
498
499   - Add QT support for preprocessing .ui files into .c files.
500
501
502
503 RELEASE 0.90 - Wed, 25 Jun 2003 14:24:52 -0500
504
505   From Chad Austin:
506
507   - Fix the _concat() documentation, and add a test for it.
508
509   - Portability fixes for non-GNU versions of lex and yacc.
510
511   From Matt Balvin:
512
513   - Fix handling of library prefixes when the subdirectory matches
514     the prefix.
515
516   From Timothee Bessett:
517
518   - Add an M4 Builder.
519
520   From Charles Crain:
521
522   - Use '.lnk' as the suffix on the temporary file for linking long
523     command lines (necessary for the Phar Lap linkloc linker).
524
525   - Save non-string Options values as their actual type.
526
527   - Save Options string values that contain a single quote correctly.
528
529   - Save any Options values that are changed from the default
530     Environment values, not just ones changed on the command line or in
531     an Options file.
532
533   - Make closing the Options file descriptor exception-safe.
534
535   From Steven Knight:
536
537   - SCons now enforces (with an error) that construction variables
538     must have the same form as valid Python identifiers.
539
540   - Fix man page bugs: remove duplicate AddPostAction() description;
541     document no_import_lib; mention that CPPFLAGS does not contain
542     $_CPPINCFLAGS; mention that F77FLAGS does not contain $_F77INCFLAGS;
543     mention that LINKFLAGS and SHLINKFLAGS contains neither $_LIBFLAGS
544     nor $_LIBDIRFLAGS.
545
546   - Eliminate a dependency on the distutils.fancy_getopt module by
547     copying and pasting its wrap_text() function directly.
548
549   - Make the Script.Options() subclass match the underlying base class
550     implementation.
551
552   - When reporting a target is up to date, quote the target like make
553     (backquote-quote) instead of with double quotes.
554
555   - Fix handling of ../* targets when using -U, -D or -u.
556
557   From Steve Leblanc:
558
559   - Don't update the .sconsign files when run with -n.
560
561   From Gary Oberbrunner:
562
563   - Add support for the Intel C Compiler (icl.exe).
564
565   From Anthony Roach
566
567   - Fix Import('*').
568
569   From David Snopek
570
571   - Fix use of SConf in paths with white space in them.
572
573   - Add CheckFunc and CheckType functionality to SConf.
574
575   - Fix use of SConf with Builders that return a list of nodes.
576
577   From David Snopek and Christoph Wiedemann
578
579   - Fix use of the SConf subsystem with SConscriptChdir().
580
581   From Greg Spencer
582
583   - Check for the existence of MS Visual Studio on disk before using it,
584     to avoid getting fooled by leftover junk in the registry.
585
586   - Add support for MSVC++ .NET.
587
588   - Add support for MS Visual Studio project files (DSP, DSW,
589     SLN and VCPROJ files).
590
591   From Christoph Wiedemann
592
593   - SConf now works correctly when the -n and -q options are used.
594
595
596
597 RELEASE 0.14 - Wed, 21 May 2003 05:16:32 -0500
598
599   From Chad Austin:
600
601   - Use .dll (not .so) for shared libraries on Cygwin; use -fPIC
602     when compiling them.
603
604   - Use 'rm' to remove files under Cygwin.
605
606   - Add a PLATFORM variable to construction environments.
607
608   - Remove the "platform" argument from tool specifications.
609
610   - Propogate PYTHONPATH when running the regression tests so distutils
611     can be found in non-standard locations.
612
613   - Using MSVC long command-line linking when running Cygwin.
614
615   - Portability fixes for a lot of tests.
616
617   - Add a Value Node class for dependencies on in-core Python values.
618
619   From Allen Bierbaum:
620
621   - Pass an Environment to the Options validator method, and
622     add an Options.Save() method.
623
624   From Steve Christensen:
625
626   - Add an optional sort function argument to the GenerateHelpText()
627     Options function.
628
629   - Evaluate the "varlist" variables when computing the signature of a
630     function action.
631
632   From Charles Crain:
633
634   - Parse the source .java files for class names (including inner class
635     names) to figure out the target .class files that will be created.
636
637   - Make Java support work with Repositories and SConscriptChdir(0).
638
639   - Pass Nodes, not strings, to Builder emitter functions.
640
641   - Refactor command-line interpolation and signature calculation
642     so we can use real Node attributes.
643
644   From Steven Knight:
645
646   - Add Java support (javac, javah, jar and rmic).
647
648   - Propagate the external SYSTEMROOT environment variable into ENV on
649     Win32 systems, so external commands that use sockets will work.
650
651   - Add a .posix attribute to PathList expansions.
652
653   - Check out CVS source files using POSIX path names (forward slashes
654     as separators) even on Win32.
655
656   - Add Node.clear() and Node.FS.Entry.clear() methods to wipe out a
657     Node's state, allowing it to be re-evaluated by continuous
658     integration build interfaces.
659
660   - Change the name of the Set{Build,Content}SignatureType() functions
661     to {Target,Source}Signatures().  Deprecate the old names but support
662     them for backwards compatibility.
663
664   - Add internal SCons.Node.FS.{Dir,File}.Entry() methods.
665
666   - Interpolate the null string if an out-of-range subscript is used
667     for a construction variable.
668
669   - Fix the internal Link function so that it properly links or copies
670     files in subsidiary BuildDir directories.
671
672   - Refactor the internal representation of a single execution instance
673     of an action to eliminate redundant signature calculations.
674
675   - Eliminate redundant signature calculations for Nodes.
676
677   - Optimize out calling hasattr() before accessing attributes.
678
679   - Say "Cleaning targets" (not "Building...") when the -c option is
680     used.
681
682   From Damyan Pepper:
683
684   - Quote the "Entering directory" message like Make.
685
686   From Stefan Reichor:
687
688   - Add support for using Ghostscript to convert Postscript to PDF files.
689
690   From Anthony Roach:
691
692   - Add a standalone "Alias" function (separate from an Environment).
693
694   - Make Export() work for local variables.
695
696   - Support passing a dictionary to Export().
697
698   - Support Import('*') to import everything that's been Export()ed.
699
700   - Fix an undefined exitvalmap on Win32 systems.
701
702   - Support new SetOption() and GetOption() functions for setting
703     various command-line options from with an SConscript file.
704
705   - Deprecate the old SetJobs() and GetJobs() functions in favor of
706     using the new generic {Set,Get}Option() functions.
707
708   - Fix a number of tests that searched for a Fortran compiler using the
709     external PATH instead of what SCons would use.
710
711   - Fix the interaction of SideEffect() and BuildDir() so that (for
712     example) PDB files get put correctly in a BuildDir().
713
714   From David Snopek:
715
716   - Contribute the "Autoscons" code for Autoconf-like checking for
717     the existence of libraries, header files and the like.
718
719   - Have the Tool() function add the tool name to the $TOOLS
720     construction variable.
721
722   From Greg Spencer:
723
724   - Support the C preprocessor #import statement.
725
726   - Allow the SharedLibrary() Builder on Win32 systems to be able to
727     register a newly-built dll using regsvr32.
728
729   - Add a Builder for Windows type library (.tlb) files from IDL files.
730
731   - Add an IDL scanner.
732
733   - Refactor the Fortran, C and IDL scanners to share common logic.
734
735   - Add .srcpath and .srcdir attributes to $TARGET and $SOURCE.
736
737   From Christoph Wiedemann:
738
739   - Integrate David Snopek's "Autoscons" code as the new SConf
740     configuration subsystem, including caching of values between
741     runs (using normal SCons dependency mechanisms), tests, and
742     documentation.
743
744
745
746 RELEASE 0.13 - Mon, 31 Mar 2003 20:22:00 -0600
747
748   From Charles Crain:
749
750   - Fix a bug when BuildDir(duplicate=0) is used and SConscript
751     files are called from within other SConscript files.
752
753   - Support (older) versions of Perforce which don't set the Windows
754     registry.
755
756
757
758 RELEASE 0.12 - Thu, 27 Mar 2003 23:52:09 -0600
759
760   From Charles Crain:
761
762   - Added support for the Perforce source code management system.
763
764   - Fix str(Node.FS) so that it returns a path relative to the calling
765     SConscript file's directory, not the top-level directory.
766
767   - Added support for a separate src_dir argument to SConscript()
768     that allows explicit specification of where the source files
769     for an SConscript file can be found.
770
771   - Support more easily re-usable flavors of command generators by
772     calling callable variables when strings are expanded.
773
774   From Steven Knight:
775
776   - Added an INSTALL construction variable that can be set to a function
777     to control how the Install() and InstallAs() Builders install files.
778     The default INSTALL function now copies, not links, files.
779
780   - Remove deprecated features:  the "name" argument to Builder objects,
781     and the Environment.Update() method.
782
783   - Add an Environment.SourceCode() method to support fetching files
784     from source code systems.  Add factory methods that create Builders
785     to support BitKeeper, CVS, RCS, and SCCS.  Add support for fetching
786     files from RCS or SCCS transparently (like GNU Make).
787
788   - Make the internal to_String() function more efficient.
789
790   - Make the error message the same as other build errors when there's a
791     problem unlinking a target file in preparation for it being built.
792
793   - Make TARGET, TARGETS, SOURCE and SOURCES reserved variable names and
794     warn if the user tries to set them in a construction environment.
795
796   - Add support for Tar and Zip files.
797
798   - Better documentation of the different ways to export variables to a
799     subsidiary SConscript file.  Fix documentation bugs in a tools
800     example, places that still assumed SCons split strings on white
801     space, and typos.
802
803   - Support fetching arbitrary files from the TARGETS or SOURCES lists
804     (e.g. ${SOURCES[2]}) when calculating the build signature of a
805     command.
806
807   - Don't silently swallow exceptions thrown by Scanners (or other
808     exceptions while finding a node's dependent children).
809
810   - Push files to CacheDir() before calling the superclass built()
811     method (which may clear the build signature as part of clearing
812     cached implicit dependencies, if the file has a source scanner).
813     (Bug reported by Jeff Petkau.)
814
815   - Raise an internal error if we attempt to push a file to CacheDir()
816     with a build signature of None.
817
818   - Add an explicit Exit() function for terminating early.
819
820   - Change the documentation to correctly describe that the -f option
821     doesn't change to the directory in which the specified file lives.
822     
823   - Support changing directories locally with SConscript directory
824     path names relative to any SConstruct file specified with -f.
825     This allows you to build in another directory by simply changing
826     there and pointing at the SConstruct file in another directory.
827
828   - Change the default SConscriptChdir() behavior to change to the
829     SConscript directory while it's being read.
830
831   - Fix an exception thrown when the -U option was used with no
832     Default() target specified.
833
834   - Fix -u so that it builds things in corresponding build directories
835     when used in a source directory.
836
837   From Lachlan O'Dea:
838
839   - Add SharedObject() support to the masm tool.
840
841   - Fix WhereIs() to return normalized paths.
842
843   From Jeff Petkau:
844
845   - Don't copy a built file to a CacheDir() if it's already there.
846
847   - Avoid partial copies of built files in a CacheDir() by copying
848     to a temporary file and renaming.
849
850   From Anthony Roach:
851
852   - Fix incorrect dependency-cycle errors when an Aliased source doesn't
853     exist.
854
855
856
857 RELEASE 0.11 - Tue, 11 Feb 2003 05:24:33 -0600
858
859   From Chad Austin:
860
861   - Add support for IRIX and the SGI MIPSPro tool chain.
862
863   - Support using the MSVC tool chain when running Cygwin Python.
864
865   From Michael Cook:
866
867   - Avoid losing signal bits in the exit status from a command,
868     helping terminate builds on interrupt (CTRL+C).
869
870   From Charles Crain:
871
872   - Added new AddPreAction() and AddPostAction() functions that support
873     taking additional actions before or after building specific targets.
874
875   - Add support for the PharLap ETS tool chain.
876
877   From Steven Knight:
878
879   - Allow Python function Actions to specify a list of construction
880     variables that should be included in the Action's signature.
881
882   - Allow libraries in the LIBS variable to explicitly include the prefix
883     and suffix, even when using the GNU linker.
884     (Bug reported by Neal Becker.)
885
886   - Use DOS-standard CR-LF line endings in the scons.bat file.
887     (Bug reported by Gary Ruben.)
888
889   - Doc changes:  Eliminate description of deprecated "name" keyword
890     argument from Builder definition (reported by Gary Ruben).
891
892   - Support using env.Append() on BUILDERS (and other dictionaries).
893     (Bug reported by Bj=F6rn Bylander.)
894
895   - Setting the BUILDERS construction variable now properly clears
896     the previous Builder attributes from the construction Environment.
897     (Bug reported by Bj=F6rn Bylander.)
898
899   - Fix adding a prefix to a file when the target isn't specified.
900     (Bug reported by Esa Ilari Vuokko.)
901
902   - Clean up error messages from problems duplicating into read-only
903     BuildDir directories or into read-only files.
904
905   - Add a CommandAction.strfunction() method, and add an "env" argument
906     to the FunctionAction.strfunction() method, so that all Action
907     objects have strfunction() methods, and the functions for building
908     and returning a string both take the same arguments.
909
910   - Add support for new CacheDir() functionality to share derived files
911     between builds, with related options --cache-disable, --cache-force,
912     and --cache-show.
913
914   - Change the default behavior when no targets are specified to build
915     everything in the current directory and below (like Make).  This
916     can be disabled by specifying Default(None) in an SConscript.
917
918   - Revamp SCons installation to fix a case-sensitive installation
919     on Win32 systems, and to add SCons-specific --standard-lib,
920     --standalone-lib, and --version-lib options for easier user
921     control of where the libraries get installed.
922
923   - Fix the ability to directly import and use Platform and Tool modules
924     that have been implicitly imported into an Environment().
925
926   - Add support for allowing an embedding interface to annotate a node
927     when it's created.
928
929   - Extend the SConscript() function to accept build_dir and duplicate
930     keyword arguments that function like a BuildDir() call.
931
932   From Steve Leblanc:
933
934   - Fix the output of -c -n when directories are involved, so it
935     matches -c.
936
937   From Anthony Roach:
938
939   - Use a different shared object suffix (.os) when using gcc so shared
940     and static objects can exist side-by-side in the same directory.
941
942   - Allow the same object files on Win32 to be linked into either
943     shared or static libraries.
944
945   - Cache implicit cache values when using --implicit-cache.
946
947
948
949 RELEASE 0.10 - Thu, 16 Jan 2003 04:11:46 -0600
950
951   From Derrick 'dman' Hudson:
952
953   - Support Repositories on other file systems by symlinking or
954     copying files when hard linking won't work.
955
956   From Steven Knight:
957
958   - Remove Python bytecode (*.pyc) files from the scons-local packages.
959
960   - Have FunctionActions print a description of what they're doing
961     (a representation of the Python call).
962
963   - Fix the Install() method so that, like other actions, it prints
964     what would have happened when the -n option is used.
965
966   - Don't create duplicate source files in a BuildDir when the -n
967     option is used.
968
969   - Refactor the Scanner interface to eliminate unnecessary Scanner
970     calls and make it easier to write efficient scanners.
971
972   - Added a "recursive" flag to Scanner creation that specifies the
973     Scanner should be invoked recursively on dependency files returned
974     by the scanner.
975
976   - Significant performance improvement from using a more efficient
977     check, throughout the code, for whether a Node has a Builder.
978
979   - Fix specifying only the source file to MultiStepBuilders such as
980     the Program Builder.  (Bug reported by Dean Bair.)
981
982   - Fix an exception when building from a file with the same basename as
983     the subdirectory in which it lives.  (Bug reported by Gerard Patel.)
984
985   - Fix automatic deduction of a target file name when there are
986     multiple source files specified; the target is now deduced from just
987     the first source file in the list.
988
989   - Documentation fixes: better initial explanation of SConscript files;
990     fix a misformatted "table" in the StaticObject explanation.
991
992   From Steven Knight and Steve Leblanc:
993
994   - Fix the -c option so it will remove symlinks.
995
996   From Steve Leblanc:
997
998   - Add a Clean() method to support removing user-specified targets
999     when using the -c option.
1000
1001   - Add a development script for running SCons through PyChecker.
1002
1003   - Clean up things found by PyChecker (mostly unnecessary imports).
1004
1005   - Add a script to use HappyDoc to create HTML class documentation.
1006
1007   From Lachlan O'Dea:
1008
1009   - Make the Environment.get() method return None by default.
1010
1011   From Anthony Roach:
1012
1013   - Add SetJobs() and GetJobs() methods to allow configuration of the
1014     number of default jobs (still overridden by -j).
1015
1016   - Convert the .sconsign file format from ASCII to a pickled Python
1017     data structure.
1018
1019   - Error message cleanups:  Made consistent the format of error
1020     messages (now all start with "scons: ***") and warning messages (now
1021     all start with "scons: warning:").  Caught more cases with the "Do
1022     not know how to build" error message.
1023
1024   - Added support for the MinGW tool chain.
1025
1026   - Added a --debug=includes option.
1027
1028
1029
1030 RELEASE 0.09 - Thu,  5 Dec 2002 04:48:25 -0600
1031
1032   From Chad Austin:
1033
1034   - Add a Prepend() method to Environments, to append values to
1035     the beginning of construction variables.
1036
1037   From Matt Balvin:
1038
1039   - Add long command-line support to the "lib" Tool (Microsoft library
1040     archiver), too.
1041
1042   From Charles Crain:
1043
1044   - Allow $$ in a string to be passed through as $.
1045
1046   - Support file names with odd characters in them.
1047
1048   - Add support for construction variable substition on scanner
1049     directories (in CPPPATH, F77PATH, LIBPATH, etc.).
1050
1051   From Charles Crain and Steven Knight:
1052
1053   - Add Repository() functionality, including the -Y option.
1054
1055   From Steven Knight:
1056
1057   - Fix auto-deduction of target names so that deduced targets end
1058     up in the same subdirectory as the source.
1059
1060   - Don't remove source files specified on the command line!
1061
1062   - Suport the Intel Fortran Compiler (ifl.exe).
1063
1064   - Supply an error message if there are no command-line or
1065     Default() targets specified.
1066
1067   - Fix the ASPPCOM values for the GNU assembler.
1068     (Bug reported by Brett Polivka.)
1069
1070   - Fix an exception thrown when a Default() directory was specified
1071     when using the -U option.
1072
1073   - Issue a warning when -c can't remove a target.
1074
1075   - Eliminate unnecessary Scanner calls by checking for the
1076     existence of a file before scanning it.  (This adds a generic
1077     hook to check an arbitrary condition before scanning.)
1078
1079   - Add explicit messages to tell when we're "Reading SConscript files
1080     ...," "done reading SConscript files," "Building targets," and
1081     "done building targets."  Add a -Q option to supress these.
1082
1083   - Add separate $SHOBJPREFIX and $SHOBJSUFFIX construction variables
1084     (by default, the same as $OBJPREFIX and $OBJSUFFIX).
1085
1086   - Add Make-like error messages when asked to build a source file,
1087     and before trying to build a file that doesn't have all its source
1088     files (including when an invalid drive letter is used on WIN32).
1089
1090   - Add an scons-local-{version} package (in both .tar.gz and .zip
1091     flavors) to help people who want to ship SCons as a stand-alone
1092     build tool in their software packages.
1093
1094   - Prevent SCons from unlinking files in certain situations when
1095     the -n option is used.
1096
1097   - Change the name of Tool/lib.py to Tool/mslib.py.
1098
1099   From Steven Knight and Anthony Roach:
1100
1101   - Man page:  document the fact that Builder calls return Node objects.
1102
1103   From Steve LeBlanc:
1104
1105   - Refactor option processing to use our own version of Greg Ward's
1106     Optik module, modified to run under Python 1.5.2.
1107
1108   - Add a ParseConfig() command to modify an environment based on
1109     parsing output from a *-config command.
1110
1111   From Jeff Petkau:
1112
1113   - Fix interpretation of '#/../foo' on Win32 systems.
1114
1115   From Anthony Roach:
1116
1117   - Fixed use of command lines with spaces in their arguments,
1118     and use of Nodes with spaces in their string representation.
1119
1120   - Make access and modification times of files in a BuildDir match
1121     the source file, even when hard linking isn't available.
1122
1123   - Make -U be case insensitive on Win32 systems.
1124
1125   - Issue a warning and continue when finding a corrupt .sconsign file.
1126
1127   - Fix using an alias as a dependency of a target so that if one of the
1128     alias' dependencies gets rebuilt, the resulting target will, too.
1129
1130   - Fix differently ordered targets causing unnecessary rebuilds
1131     on case insensitive systems.
1132
1133   - Use os.system() to execute external commands whenever the "env"
1134     utility is available, which is much faster than fork()/exec(),
1135     and fixes the -j option on several platforms.
1136
1137   - Fix use of -j with multiple targets.
1138
1139   - Add an Options() object for friendlier accomodation of command-
1140     line arguments.
1141
1142   - Add support for Microsoft VC++ precompiled header (.pch) files,
1143     debugger (.pdb) files, and resource (.rc) files.
1144
1145   - Don't compute the $_CPPINCFLAGS, $_F77INCFLAGS, $_LIBFLAGS and
1146     $_LIBDIRFLAGS variables each time a command is executed, define
1147     them so they're computed only as needed.  Add a new _concat
1148     function to the Environment that allows people to define their
1149     own similar variables.
1150
1151   - Fix dependency scans when $LIBS is overridden.
1152
1153   - Add EnsurePythonVersion() and EnsureSConsVersion() functions.
1154
1155   - Fix the overly-verbose stack trace on ListBuilder build errors.
1156
1157   - Add a SetContentSignatureType() function, allowing use of file
1158     timestamps instead of MD5 signatures.
1159
1160   - Make -U and Default('source') fail gracefully.
1161
1162   - Allow the File() and Dir() methods to take a path-name string as
1163     the starting directory, in addition to a Dir object.
1164
1165   - Allow the command handler to be selected via the SPAWN, SHELL
1166     and ESCAPE construction variables.
1167
1168   - Allow construction variables to be overridden when a Builder
1169     is called.
1170
1171   From sam th:
1172
1173   - Dynamically check for the existence of utilities with which to
1174     initialize Environments by default.
1175
1176
1177
1178 RELEASE 0.08 - Mon, 15 Jul 2002 12:08:51 -0500
1179
1180   From Charles Crain:
1181
1182   - Fixed a bug with relative CPPPATH dirs when using BuildDir().
1183     (Bug reported by Bob Summerwill.)
1184
1185   - Added a warnings framework and a --warn option to enable or
1186     disable warnings.
1187
1188   - Make the C scanner warn users if files referenced by #include
1189     directives cannot be found and --warn=dependency is specified.
1190
1191   - The BUILDERS construction variable should now be a dictionary
1192     that maps builder names to actions.  Existing uses of lists,
1193     and the Builder name= keyword argument, generate warnings
1194     about use of deprecated features.
1195
1196   - Removed the "shared" keyword argument from the Object and
1197     Library builders.
1198     
1199   - Added separated StaticObject, SharedObject, StaticLibrary and
1200     SharedLibrary builders.  Made Object and Library synonyms for
1201     StaticObject and StaticLibrary, respectively.
1202
1203   - Add LIBS and LIBPATH dependencies for shared libraries.
1204
1205   - Removed support for the prefix, suffix and src_suffix arguments
1206     to Builder() to be callable functions.
1207
1208   - Fix handling file names with multiple dots.
1209
1210   - Allow a build directory to be outside of the SConstruct tree.
1211
1212   - Add a FindFile() function that searches for a file node with a
1213     specified name.
1214
1215   - Add $CPPFLAGS to the shared-object command lines for g++ and gcc.
1216
1217   From Charles Crain and Steven Knight:
1218
1219   - Add a "tools=" keyword argument to Environment instantiation,
1220     and a separate Tools() method, for more flexible specification
1221     of tool-specific environment changes.
1222
1223   From Steven Knight:
1224
1225   - Add a "platform=" keyword argument to Environment instantiation,
1226     and a separate Platform() method, for more flexible specification
1227     of platform-specific environment changes.
1228
1229   - Updated README instructions and setup.py code to catch an
1230     installation failure from not having distutils installed.
1231
1232   - Add descriptions to the -H help text for -D, -u and -U so
1233     people can tell them apart.
1234
1235   - Remove the old feature of automatically splitting strings
1236     of file names on white space.
1237
1238   - Add a dependency Scanner for native Fortran "include" statements,
1239     using a new "F77PATH" construction variable.
1240
1241   - Fix C #include scanning to detect file names with characters like
1242     '-' in them.
1243
1244   - Add more specific version / build output to the -v option.
1245
1246   - Add support for the GNU as, Microsoft masm, and nasm assemblers.
1247
1248   - Allow the "target" argument to a Builder call to be omitted, in
1249     which case the target(s) are deduced from the source file(s) and the
1250     Builder's specified suffix.
1251
1252   - Add a tar archive builder.
1253
1254   - Add preliminary support for the OS/2 Platform, including the icc
1255     and ilink Tools.
1256
1257   From Jeff Petkau:
1258
1259   - Fix --implicit-cache if the scanner returns an empty list.
1260
1261   From Anthony Roach:
1262
1263   - Add a "multi" keyword argument to Builder creation that specifies
1264     it's okay to call the builder multiple times for a target.
1265
1266   - Set a "multi" on Aliases so multiple calls will append to an Alias.
1267
1268   - Fix emitter functions' use of path names when using BuildDir or
1269     in subdirectories.
1270
1271   - Fix --implicit-cache causing redundant rebuilds when the header
1272     file list changed.
1273
1274   - Fix --implicit-cache when a file has no implicit dependencies and
1275     its source is generated.
1276
1277   - Make the drive letters on Windows always be the same case, so that
1278     changes in the case of drive letters don't cause a rebuild.
1279
1280   - Fall back to importing the SCons.TimeStamp module if the SCons.MD5
1281     module can't be imported.
1282
1283   - Fix interrupt handling to guarantee that a single interrupt will
1284     halt SCons both when using -j and not.
1285
1286   - Fix .sconsign signature storage so that output files of one build
1287     can be safely used as input files to another build.
1288
1289   - Added a --debug=time option to print SCons execution times.
1290
1291   - Print an error message if a file can't be unlinked before being
1292     built, rather than just silently terminating the build.
1293
1294   - Add a SideEffect() method that can be used to tell the build
1295     engine that a given file is created as a side effect of building
1296     a target.  A file can be specified as a side effect of more than
1297     one build comand, in which case the commands will not be executed
1298     simultaneously.
1299
1300   - Significant performance gains from not using our own version of
1301     the inefficient stock os.path.splitext() method, caching source
1302     suffix computation, code cleanup in MultiStepBuilder.__call__(),
1303     and replicating some logic in scons_subst().
1304
1305   - Add --implicit-deps-changed and --implicit-deps-unchanged options.
1306
1307   - Add a GetLaunchDir() function.
1308
1309   - Add a SetBuildSignatureType() function.
1310
1311   From Zed Shaw:
1312
1313   - Add an Append() method to Environments, to append values to
1314     construction variables.
1315
1316   - Change the name of Update() to Replace().  Keep Update() as a
1317     deprecated synonym, at least for now.
1318
1319   From Terrel Shumway:
1320
1321   - Use a $PYTHON construction variable, initialized to sys.executable,
1322     when using Python to build parts of the SCons packages.
1323
1324   - Use sys.prefix, not sys.exec_prefix, to find pdb.py.
1325
1326
1327
1328 RELEASE 0.07 - Thu,  2 May 2002 13:37:16 -0500
1329
1330   From Chad Austin:
1331
1332   - Changes to build SCons packages on IRIX (and other *NIces).
1333
1334   - Don't create a directory Node when a file already exists there,
1335     and vice versa.
1336
1337   - Add 'dirs' and 'names' keyword arguments to SConscript for
1338     easier specification of subsidiary SConscript files.
1339
1340   From Charles Crain:
1341
1342   - Internal cleanup of environment passing to function Actions.
1343
1344   - Builders can now take arbitrary keyword arguments to create
1345     attributes to be passed to: command generator functions,
1346     FunctionAction functions, Builder emitter functions (below),
1347     and prefix/suffix generator functions (below).
1348
1349   - Command generator functions can now return ANYTHING that can be
1350     converted into an Action (a function, a string, a CommandGenerator
1351     instance, even an ActionBase instance).
1352
1353   - Actions now call get_contents() with the actual target and source
1354     nodes used for the build.
1355
1356   - A new DictCmdGenerator class replaces CompositeBuilder to support
1357     more flexible Builder behavior internally.
1358
1359   - Builders can now take an emitter= keyword argument.  An emitter
1360     is a function that takes target, source, and env argument, then
1361     return a 2-tuple of (new sources, new targets).  The emitter is
1362     called when the Builder is __call__'ed, allowing a user to modify
1363     source and target lists.
1364
1365   - The prefix, suffix and src_suffix Builder arguments now take a
1366     callable as well a string.  The callable is passed the Environment
1367     and any extra Builder keyword arguments and is expected to return
1368     the appropriate prefix or suffix.
1369
1370   - CommandActions can now be a string, a list of command + argument
1371     strings, or a list of commands (strings or lists).
1372
1373   - Added shared library support.  The Object and Library Builders now
1374     take a "shared=1" keyword argument to specify that a shared object
1375     or shared library should be built.  It is an error to try to build
1376     static objects into a shared library or vice versa.
1377
1378   - Win32 support for .def files has been added.  Added the Win32-specific
1379     construction variables $WIN32DEFPREFIX, $WIN32DEFSUFFIX,
1380     $WIN32DLLPREFIX and $WIN32IMPLIBPREFIX.  When building a .dll,
1381     the new construction variable $WIN32_INSERT_DEF, controls whether
1382     the appropriately-named .def file is inserted into the target
1383     list (if not already present).  A .lib file is always added to
1384     a Library build if not present in the list of targets.
1385
1386   - ListBuilder now passes all targets to the action, not just the first.
1387
1388   - Fix so that -c now deletes generated yacc .h files.
1389
1390   - Builder actions and emitter functions can now be initialized, through
1391     construction variables, to things other than strings.
1392
1393   - Make top-relative '#/dir' lookups work like '#dir'.
1394
1395   - Fix for relative CPPPATH directories in subsidiary SConscript files
1396     (broken in 0.06).
1397
1398   - Add a for_signature argument to command generators, so that
1399     generators that need to can return distinct values for the
1400     command signature and for executing the command.
1401
1402   From Alex Jacques:
1403
1404   - Create a better scons.bat file from a py2bat.py script on the Python
1405     mailing list two years ago (modeled after pl2bat.pl).
1406
1407   From Steven Knight:
1408
1409   - Fix so that -c -n does *not* remove the targets!
1410
1411   - Man page:  Add a hierarchical libraries + Program example.
1412
1413   - Support long MSVC linker command lines through a builder action
1414     that writes to a temporary file and uses the magic MSVC "link @file"
1415     argument syntax if the line is longer than 2K characters.
1416
1417   - Fix F77 command-line options on Win32 (use /Fo instead of -o).
1418
1419   - Use the same action to build from .c (lower case) and .C (upper
1420     case) files on case-insensitive systems like Win32.
1421
1422   - Support building a PDF file directly from a TeX or LaTeX file
1423     using pdftex or pdflatex.
1424
1425   - Add a -x option to runtest.py to specify the script being tested.
1426     A -X option indicates it's an executable, not a script to feed
1427     to the Python interpreter.
1428
1429   - Add a Split() function (identical to SCons.Util.argmunge()) for use
1430     in the next release, when Builders will no longer automatically split
1431     strings on white space.
1432
1433   From Steve Leblanc:
1434
1435   - Add the SConscriptChdir() method.
1436
1437   From Anthony Roach:
1438
1439   - Fix --debug=tree when used with directory targets.
1440
1441   - Significant internal restructuring of Scanners and Taskmaster.
1442
1443   - Added new --debug=dtree option.
1444
1445   - Fixes for --profile option.
1446
1447   - Performance improvement in construction variable substitution.
1448
1449   - Implemented caching of content signatures, plus added --max-drift
1450     option to control caching.
1451
1452   - Implemented caching of dependency signatures, enabled by new
1453     --implicit-cache option.
1454
1455   - Added abspath construction variable modifier.
1456
1457   - Added $SOURCE variable as a synonym for $SOURCES[0].
1458
1459   - Write out .sconsign files on error or interrupt so intermediate
1460     build results are saved.
1461
1462   - Change the -U option to -D.  Make a new -U that builds just the
1463     targets from the local SConscript file.
1464
1465   - Fixed use of sys.path so Python modules can be imported from
1466     the SConscript directory.
1467
1468   - Fix for using Aliases with the -u, -U and -D options.
1469
1470   - Fix so that Nodes can be passed to SConscript files.
1471
1472   From Moshe Zadka:
1473   
1474   - Changes for official Debian packaging.
1475
1476
1477
1478 RELEASE 0.06 - Thu, 28 Mar 2002 01:24:29 -0600
1479
1480   From Charles Crain:
1481
1482   - Fix command generators to expand construction variables.
1483
1484   - Make FunctionAction arguments be Nodes, not strings.
1485
1486   From Stephen Kennedy:
1487
1488   - Performance:  Use a dictionary, not a list, for a Node's parents.
1489
1490   From Steven Knight:
1491
1492   - Add .zip files to the packages we build.
1493
1494   - Man page:  document LIBS, fix a typo, document ARGUMENTS.
1495
1496   - Added RANLIB and RANLIBFLAGS construction variables.  Only use them
1497     in ARCOM if there's a "ranlib" program on the system.
1498
1499   - Add a configurable CFILESUFFIX for the Builder of .l and .y files
1500     into C files.
1501
1502   - Add a CXXFile Builder that turns .ll and .yy files into .cc files
1503     (configurable via a CXXFILESUFFIX construction variable).
1504
1505   - Use the POSIX-standard lex -t flag, not the GNU-specific -o flag.
1506     (Bug reported by Russell Christensen.)
1507
1508   - Fixed an exception when CPPPATH or LIBPATH is a null string.
1509     (Bug reported by Richard Kiss.)
1510
1511   - Add a --profile=FILE option to make profiling SCons easier.
1512
1513   - Modify the new DVI builder to create .dvi files from LaTeX (.ltx
1514     and .latex) files.
1515
1516   - Add support for Aliases (phony targets).
1517
1518   - Add a WhereIs() method for searching for path names to executables.
1519
1520   - Add PDF and PostScript document builders.
1521
1522   - Add support for compiling Fortran programs from a variety of
1523     suffixes (a la GNU Make):  .f, .F, .for, .FOR, .fpp and .FPP
1524
1525   - Support a CPPFLAGS variable on all default commands that use the
1526     C preprocessor.
1527
1528   From Steve Leblanc:
1529
1530   - Add support for the -U option.
1531
1532   - Allow CPPPATH, LIBPATH and LIBS to be specified as white-space
1533     separated strings.
1534
1535   - Add a document builder to create .dvi files from TeX (.tex) files.
1536
1537   From Anthony Roach:
1538
1539   - Fix:  Construction variables with values of 0 were incorrectly
1540     interpolated as ''. 
1541
1542   - Support env['VAR'] to fetch construction variable values.
1543
1544   - Man page:  document Precious().
1545
1546
1547
1548 RELEASE 0.05 - Thu, 21 Feb 2002 16:50:03 -0600
1549
1550   From Chad Austin:
1551
1552   - Set PROGSUFFIX to .exe under Cygwin.
1553
1554   From Charles Crain:
1555
1556   - Allow a library to specified as a command-line source file, not just
1557     in the LIBS construction variable.
1558
1559   - Compensate for a bug in os.path.normpath() that returns '' for './'
1560     on WIN32.
1561
1562   - More performance optimizations:  cache #include lines from files,
1563     eliminate unnecessary calls.
1564
1565   - If a prefix or suffix contains white space, treat the resulting
1566     concatenation as separate arguments.
1567
1568   - Fix irregularities in the way we fetch DevStudio information from
1569     the Windows registry, and in our registry error handling.
1570
1571   From Steven Knight:
1572
1573   - Flush stdout after print so it intermixes correctly with stderr
1574     when redirected.
1575
1576   - Allow Scanners to return a list of strings, and document how to
1577     write your own Scanners.
1578
1579   - Look up implicit (scanned) dependencies relative to the directory
1580     of file being scanned.
1581
1582   - Make writing .sconsign files more robust by first trying to write
1583     to a temp file that gets renamed.
1584
1585   - Create all of the directories for a list of targets before trying
1586     to build any of the targets.
1587
1588   - WIN32 portability fixes in tests.
1589
1590   - Allow the list of variables exported to an SConscript file to be
1591     a UserList, too.
1592
1593   - Document the overlooked LIBPATH construction variable.
1594     (Bug reported by Eicke Godehardt.)
1595
1596   - Fix so that Ignore() ignores indirect, implicit dependencies
1597     (included files), not just direct dependencies.
1598
1599   - Put the man page in the Debian distribution.
1600
1601   - Run HTML docs through tidy to clean up the HTML (for Konqueror).
1602
1603   - Add preliminary support for Unicode strings.
1604
1605   - Efficiency:  don't scan dependencies more than once during the
1606     walk of a tree.
1607
1608   - Fix the -c option so it doesn't stop removing targets if one doesn't
1609     already exist.
1610     (Bug reported by Paul Connell.)
1611
1612   - Fix the --debug=pdb option when run on Windows NT.
1613     (Bug reported by Paul Connell.)
1614
1615   - Add support for the -q option.
1616
1617   From Steve Leblanc:
1618
1619   - Add support for the -u option.
1620
1621   - Add .cc and .hh file suffixes to the C Scanner.
1622
1623   From Anthony Roach:
1624
1625   - Make the scons script return an error code on failures.
1626
1627   - Add support for using code to generate a command to build a target.
1628
1629
1630
1631 RELEASE 0.04 - Wed, 30 Jan 2002 11:09:42 -0600
1632
1633   From Charles Crain:
1634
1635   - Significant performance improvements in the Node.FS and
1636     Scanner subsystems.
1637
1638   - Fix signatures of binary files on Win32 systems.
1639
1640   - Allow LIBS and LIBPATH to be strings, not just arrays.
1641
1642   - Print a traceback if a Python-function builder throws an exception.
1643
1644   From Steven Knight:
1645
1646   - Fix using a directory as a Default(), and allow Default() to
1647     support white space in file names for strings in arrays.
1648
1649   - Man page updates:  corrected some mistakes, documented various
1650     missing Environment methods, alphabetized the construction
1651     variables and other functions, defined begin and end macros for
1652     the example sections, regularized white space separation, fixed
1653     the use of Export() in the Multiple Variants example.
1654
1655   - Function action fixes:  None is now a successful return value.
1656     Exceptions are now reported.  Document function actions.
1657
1658   - Add 'Action' and 'Scanner' to the global keywords so SConscript
1659     files can use them too.
1660
1661   - Removed the Wrapper class between Nodes and Walkers.
1662
1663   - Add examples using Library, LIBS, and LIBPATH.
1664
1665   - The C Scanner now always returns a sorted list of dependencies
1666     so order changes don't cause unnecessary rebuilds.
1667
1668   - Strip $(-$) bracketed text from command lines.  Use this to
1669     surround $_INCDIRS and $_LIBDIRS so we don't rebuild in response
1670     to changes to -I or -L options.
1671
1672   - Add the Ignore() method to ignore dependencies.
1673
1674   - Provide an error message when a nonexistent target is specified
1675     on the command line.
1676
1677   - Remove targets before building them, and add an Environment
1678     Precious() method to override that.
1679
1680   - Eliminate redundant calls to the same builder when the target is a
1681     list of targets:  Add a ListBuilder class that wraps Builders to
1682     handle lists atomically.  Extend the Task class to support building
1683     and updating multiple targets in a single Task.  Simplify the
1684     interface between Task and Taskmaster.
1685
1686   - Add a --debug=pdb option to re-run SCons under the Python debugger.
1687
1688   - Only compute a build signature once for each node.
1689
1690   - Changes to our sys.path[] manipulation to support installation into
1691     an arbitrary --prefix value.
1692
1693   From Steve Leblanc:
1694
1695   - Add var=value command-line arguments.
1696
1697
1698
1699 RELEASE 0.03 - Fri, 11 Jan 2002 01:09:30 -0600
1700
1701   From Charles Crain:
1702
1703   - Performance improvements in the Node.FS and Sig.Calculator classes.
1704
1705   - Add the InstallAs() method.
1706
1707   - Execute commands through an external interpreter (sh, cmd.exe, or
1708     command.com) to handle redirection metacharacters.
1709
1710   - Allow the user to supply a command handler.
1711
1712   From Steven Knight:
1713
1714   - Search both /usr/lib and /usr/local/lib for scons directories by
1715     adding them both to sys.path, with whichever is in sys.prefix first.
1716
1717   - Fix interpreting strings of multiple white-space separated file names
1718     as separate file names, allowing prefixes and suffixes to be appended
1719     to each individually.
1720
1721   - Refactor to move CompositeBuilder initialization logic from the
1722     factory wrapper to the __init__() method, and allow a Builder to
1723     have both an action and a src_builder (or array of them).
1724
1725   - Refactor BuilderBase.__call__() to separate Node creation/lookup
1726     from initialization of the Node's builder information.
1727
1728   - Add a CFile Builder object that supports turning lex (.l) and
1729     yacc (.y) files into .c files.
1730
1731   - Document: variable interpretation attributes; how to propogate
1732     the user's environment variables to executed commands; how to
1733     build variants in multiple BuildDirs.
1734
1735   - Collect String, Dict, and List type-checking in common utility
1736     routines so we can accept User{String,Dict,List}s all over.
1737
1738   - Put the Action factory and classes into their own module.
1739
1740   - Use one CPlusPlusAction in the Object Builder's action dictionary,
1741     instead of letting it create multiple identical instances.
1742
1743   - Document the Install() and InstallAs() methods.
1744
1745   From Steve Leblanc:
1746
1747   - Require that a Builder be given a name argument, supplying a
1748     useful error message when it isn't.
1749
1750   From Anthony Roach:
1751
1752   - Add a "duplicate" keyword argument to BuildDir() that can be set
1753     to prevent linking/copying source files into build directories.
1754
1755   - Add a "--debug=tree" option to print an ASCII dependency tree.
1756
1757   - Fetch the location of the Microsoft Visual C++ compiler(s) from
1758     the Registry, instead of hard-coding the location.
1759     
1760   - Made Scanner objects take Nodes, not path names.
1761     
1762   - Have the C Scanner cache the #include file names instead of
1763     (re-)scanning the file each time it's called.
1764
1765   - Created a separate class for parent "nodes" of file system roots,
1766     eliminating the need for separate is-parent-null checks everywhere.
1767     
1768   - Removed defined __hash__() and __cmp() methods from FS.Entry, in
1769     favor of Python's more efficient built-in identity comparisons.
1770
1771
1772
1773 RELEASE 0.02 - Sun, 23 Dec 2001 19:05:09 -0600
1774
1775   From Charles Crain:
1776
1777   - Added the Install(), BuildDir(), and Export() methods.
1778
1779   - Fix the -C option by delaying setting the top of the FS tree.
1780
1781   - Avoid putting the directory path on the libraries in the LIBS
1782     construction variable.
1783
1784   - Added a GetBuildPath() method to return the full path to the
1785     Node for a specified string.
1786
1787   - Fixed variable substitution in CPPPATH and LIBPATH.
1788
1789   From Steven Knight:
1790
1791   - Fixed the version comment in the scons.bat (the UNIX geek used
1792     # instead of @rem).
1793
1794   - Fix to setup.py so it doesn't require a sys.argv[1] argument.
1795
1796   - Provide make-like warning message for "command not found" and
1797     similar errors.
1798
1799   - Added an EXAMPLES section to the man page.
1800
1801   - Make Default() targets properly relative to their SConscript
1802     file's subdirectory.
1803
1804   From Anthony Roach:
1805
1806   - Documented CXXFLAGS, CXXCOM, and CPPPATH.
1807
1808   - Fixed SCONS_LIB_DIR to work as documented.
1809
1810   - Made Default() accept Nodes as arguments.
1811
1812   - Changed Export() to make it easier to use.
1813   
1814   - Added the Import() and Return() methods.
1815
1816
1817
1818 RELEASE 0.01 - Thu Dec 13 19:25:23 CST 2001
1819
1820 A brief overview of important functionality available in release 0.01:
1821
1822   - C and C++ compilation on POSIX and Windows NT.
1823
1824   - Automatic scanning of C/C++ source files for #include dependencies.
1825
1826   - Support for building libraries; setting construction variables
1827     allows creation of shared libraries.
1828
1829   - Library and C preprocessor search paths.
1830
1831   - File changes detected using MD5 signatures.
1832
1833   - User-definable Builder objects for building files.
1834
1835   - User-definable Scanner objects for scanning for dependencies.
1836
1837   - Parallel build (-j) support.
1838
1839   - Dependency cycles detected.
1840
1841   - Linux packages available in RPM and Debian format.
1842
1843   - Windows installer available.