summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-01-11 21:46:28 (GMT)
committerGitHub <noreply@github.com>2023-01-11 21:46:28 (GMT)
commit02a72f080dc89b037c304a85a0f96509de9ae688 (patch)
treec3a86320187d36542843d340c84a9f6e4972a47f /Misc
parent07a87f74faf31cdd755ac7de6d44531139899d1b (diff)
downloadcpython-02a72f080dc89b037c304a85a0f96509de9ae688.zip
cpython-02a72f080dc89b037c304a85a0f96509de9ae688.tar.gz
cpython-02a72f080dc89b037c304a85a0f96509de9ae688.tar.bz2
gh-98636: Fix detecting gdbm_compat for _dbm module (#98643)
Fix the gdbm_compat library detection logic to actually check for -lgdbm_compat independently of the ndbm detection. This fixes the build failure with `--with-dbmliborder=gdbm`, and implicit fallback to ndbm with the default value.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Build/2022-10-25-11-53-55.gh-issue-98636.e0RPAr.rst2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index b4e309c..a51658d 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -640,6 +640,7 @@ Tiago Gonçalves
Chris Gonnerman
Shelley Gooch
David Goodger
+Michał Górny
Elliot Gorokhovsky
Hans de Graaff
Tim Graham
diff --git a/Misc/NEWS.d/next/Build/2022-10-25-11-53-55.gh-issue-98636.e0RPAr.rst b/Misc/NEWS.d/next/Build/2022-10-25-11-53-55.gh-issue-98636.e0RPAr.rst
new file mode 100644
index 0000000..26a7cc8
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2022-10-25-11-53-55.gh-issue-98636.e0RPAr.rst
@@ -0,0 +1,2 @@
+Fix a regression in detecting ``gdbm_compat`` library for the ``_gdbm``
+module build.