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