summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGES.txt')
-rwxr-xr-xCHANGES.txt12
1 files changed, 9 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 8ebeafc62..2b84bdc62 100755
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -13,7 +13,7 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
It will now allow callables with expected args, and any extra args as long as they
have default arguments. Additionally functions with no defaults for extra arguments
as long as they are set using functools.partial to create a new callable which set them.
- - Fix Issue #3035 - mingw with SHLIBVERSION set fails with either not a dll error or
+ - Fix Issue #3035 - mingw with SHLIBVERSION set fails with either not a dll error or
"Multiple ways to build the same target were specified for:". Now mingw will disable
creating the symlinks (and adding version string to ) dlls. It sets SHLIBNOVERSIONSYMLINKS,
IMPLIBNOVERSIONSYMLINKS and LDMODULENOVERSIONSYMLINKS to True.
@@ -23,9 +23,15 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
set to any string value (For example ['none','false','no','off'])
Also previously 'All' wouldn't have the desired affect.
+ From Ivan Kravets:
+ - Provide a custom argument escape function for `TempFileMunge` using a new
+ `TEMPFILEARGESCFUNC` variable. Useful if you need to apply extra operations on
+ a command argument before writing to a temporary file (fix Windows slashes,
+ normalize paths, etc.)
+
From Henrik Maier:
- - DocbookXslt tool: The XSLT stylesheet file is now initialized to an env.File() Node,
- such that dependencies work correctly in hierarchical builds (eg when using
+ - DocbookXslt tool: The XSLT stylesheet file is now initialized to an env.File() Node,
+ such that dependencies work correctly in hierarchical builds (eg when using
DocbookXslt in SConscript('subdir/SConscript') context.
From Daniel Moody: