Skip to content

Commit 5a892cb

Browse files
miss-islingtonzanieberlend-aasland
authored
[3.13] gh-128321: Set LIBS instead of LDFLAGS when checking sqlite3 requirements (GH-128322) (#128356)
(cherry picked from commit 81376fe) Co-authored-by: Zanie Blue <[email protected]> Co-authored-by: Erlend E. Aasland <[email protected]>
1 parent 207a81a commit 5a892cb

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set ``LIBS`` instead of ``LDFLAGS`` when checking if :mod:`sqlite3` library
2+
functions are available. This fixes the ordering of linked libraries during
3+
checks, which was incorrect when using a statically linked ``libsqlite3``.

configure

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -4185,7 +4185,7 @@ WITH_SAVE_ENV([
41854185
dnl bpo-45774/GH-29507: The CPP check in AC_CHECK_HEADER can fail on FreeBSD,
41864186
dnl hence CPPFLAGS instead of CFLAGS.
41874187
CPPFLAGS="$CPPFLAGS $LIBSQLITE3_CFLAGS"
4188-
LDFLAGS="$LIBSQLITE3_LIBS $LDFLAGS"
4188+
LIBS="$LIBSQLITE3_LIBS $LIBS"
41894189
41904190
AC_CHECK_HEADER([sqlite3.h], [
41914191
have_sqlite3=yes

0 commit comments

Comments
 (0)