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