diff options
author | Steven Knight <knight@baldmt.com> | 2008-11-04 13:36:37 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2008-11-04 13:36:37 (GMT) |
commit | 094644ba8d42c7207d30f86d09037352e9d8da50 (patch) | |
tree | e7a1dadb77b230ade39090b72d90d0c6eb902d8b | |
parent | 3942f66a6ef2669458eac382f7d2afc19e4c10b8 (diff) | |
download | SCons-094644ba8d42c7207d30f86d09037352e9d8da50.zip SCons-094644ba8d42c7207d30f86d09037352e9d8da50.tar.gz SCons-094644ba8d42c7207d30f86d09037352e9d8da50.tar.bz2 |
Update src/CHANGES.txt for changes since 1.1.0.
-rw-r--r-- | src/CHANGES.txt | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index c0310e5..e15fe03 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -10,6 +10,19 @@ RELEASE 1.X - XXX + From Benoit Belley: + + - Improve the robustness of GetBuildFailures() by refactoring + SCons exception handling (especially BuildError exceptions). + + From David Cournapeau: + + - Fix $FORTRANMODDIRPREFIX for the ifort (Intel Fortran) tool. + + From Ludwig Hähne: + + - Handle Java inner classes declared within a method. + From Steven Knight: - Fix label placement by the "scons-time.py func" subcommand @@ -18,6 +31,9 @@ RELEASE 1.X - XXX - Fix env.Append() and env.Prepend()'s ability to add a string to list-like variables like $CCFLAGS under Python 2.6. + - Other Python2.6 portability: don't use "as" (a Python 2.6 keyword). + Don't use the deprecated Exception.message attribute. + - Support using the -f option to search for a different top-level file name when walking up with the -D, -U or -u options. @@ -30,6 +46,30 @@ RELEASE 1.X - XXX - Speed up the internal find_file() function (used for searching CPPPATH, LIBPATH, etc.). + From Rob Managan: + + - Scan for TeX files in the paths specified in the $TEXINPUTS + construction variable and the $TEXINPUTS environment variable. + + - Configure the PDF() and PostScript() Builders as single_source so + they know each source file generates a separate target file. + + - Add $EPSTOPDF, $EPSTOPDFFLAGS and $EPSTOPDFCOM + + - Add .tex as a valid extension for the PDF() builder. + + - Add regular expressions to find \input, \include and + \includegraphics. + + - Support generating a .pdf file from a .eps source. + + - Recursive scan included input TeX files. + + From Greg Noel: + + - Make the Action() function handle positional parameters consistently. + + RELEASE 1.1.0 - Thu, 09 Oct 2008 08:33:47 -0700 |