Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Set LIBS during sqlite3 library build checks
  • Loading branch information
zanieb committed Dec 29, 2024
commit 478374ccf26f1198bfdcc9ed7b44d0f2444b82a1
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Set ``LIBS`` when checking if :mod:`sqlite3` library functions are
available.
1 change: 1 addition & 0 deletions configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4221,6 +4221,7 @@ dnl bpo-45774/GH-29507: The CPP check in AC_CHECK_HEADER can fail on FreeBSD,
dnl hence CPPFLAGS instead of CFLAGS.
CPPFLAGS="$CPPFLAGS $LIBSQLITE3_CFLAGS"
LDFLAGS="$LIBSQLITE3_LIBS $LDFLAGS"
LIBS="$LIBSQLITE3_LIBS $LIBS"

AC_CHECK_HEADER([sqlite3.h], [
have_sqlite3=yes
Expand Down
Loading