diff options
author | Zanie Blue <contact@zanie.dev> | 2024-12-30 08:55:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-30 08:55:14 (GMT) |
commit | 81376fef76a53fb79893bfa9c9db18d97c228fbe (patch) | |
tree | 9cb13f55009aead12b5836e890feb6e89b4929a3 /Misc | |
parent | ef63cca494571f50906baae1d176469a3dcf8838 (diff) | |
download | cpython-81376fef76a53fb79893bfa9c9db18d97c228fbe.zip cpython-81376fef76a53fb79893bfa9c9db18d97c228fbe.tar.gz cpython-81376fef76a53fb79893bfa9c9db18d97c228fbe.tar.bz2 |
gh-128321: Set LIBS instead of LDFLAGS when checking sqlite3 requirements (#128322)
Co-authored-by: Erlend E. Aasland <erlend@python.org>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2024-12-28-21-05-19.gh-issue-128321.0UvbXw.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2024-12-28-21-05-19.gh-issue-128321.0UvbXw.rst b/Misc/NEWS.d/next/Build/2024-12-28-21-05-19.gh-issue-128321.0UvbXw.rst new file mode 100644 index 0000000..ed72cc8 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2024-12-28-21-05-19.gh-issue-128321.0UvbXw.rst @@ -0,0 +1,3 @@ +Set ``LIBS`` instead of ``LDFLAGS`` when checking if :mod:`sqlite3` library +functions are available. This fixes the ordering of linked libraries during +checks, which was incorrect when using a statically linked ``libsqlite3``. |