summaryrefslogtreecommitdiff
path: root/RELEASE.txt
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2023-01-27 08:00:28 -0700
committerMats Wichmann <mats@linux.com>2023-01-27 11:29:09 -0700
commit8aae133794ddeea09be2579d084ff87cd77b86f2 (patch)
treed56f17747c6b352d095c8a5701e9de63ee851b84 /RELEASE.txt
parent04bc3eaab31c5437764b10ee942b19740b5139c9 (diff)
downloadscons-git-8aae133794ddeea09be2579d084ff87cd77b86f2.tar.gz
Add unique kwarg to CheckLibs
Minor tweak to CheckFunc - the dummy prototype should have a dummy arg list too (comment from Python setuptools discussion). Might as well fail the official way: #error instead of C syntax error. Fixes #2768 Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'RELEASE.txt')
-rw-r--r--RELEASE.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/RELEASE.txt b/RELEASE.txt
index 01bf63b12..b68432df3 100644
--- a/RELEASE.txt
+++ b/RELEASE.txt
@@ -46,9 +46,11 @@ CHANGED/ENHANCED EXISTING FUNCTIONALITY
- Preliminary support for Python 3.12.
- Run LaTeX after biber/bibtex only if necessary
- Configure context methods CheckLib and CheckLibWithHeader now expose
- an additional keyword argument 'append' which controls whether to append
- (the default) or prepend discovered libraries to $LIBS. The functionality
- was always present but prepending could not be requested via the offical API.
+ two additional keyword arguments: 'append', which controls whether to append
+ (the default) or prepend discovered libraries to $LIBS, and 'unique',
+ which controls whether to add the library if it is already in the $LIBS
+ list. This brings the library-adding functionality in Configure in line
+ with the regular Append, AppendUnique, Prepend and PrependUnique methods.
FIXES