Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Propagate the -ldl and -lpthread flags, if needed, into sqlite3.pc, per request in forum post 44a58c807353162f. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
64f5f14322349b47451b8cac03bf8cd6 |
User & Date: | stephan 2025-07-04 17:20:37.961 |
Context
2025-07-04
| ||
18:38 | Propagate the -ldl and -lpthread flags, if needed, into sqlite3.pc, per request in forum post 44a58c807353162f. This resolves usage of that pkgconf file on some OSes. (Leaf check-in: b4db6ddeed user: stephan tags: branch-3.50) | |
18:32 | Add 'reconfigure' target to Makefile.in to re-run the configure script with the same flags it was generated with. (Leaf check-in: c60907e77b user: stephan tags: trunk) | |
17:20 | Propagate the -ldl and -lpthread flags, if needed, into sqlite3.pc, per request in forum post 44a58c807353162f. (check-in: 64f5f14322 user: stephan tags: trunk) | |
12:25 | Fix harmless compiler warnings. (check-in: 13af4acebe user: drh tags: trunk) | |
Changes
Changes to sqlite3.pc.in.
1 2 3 4 5 6 7 8 9 10 11 | # Package Information for pkg-config prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: SQLite Description: SQL database engine Version: @PACKAGE_VERSION@ Libs: -L${libdir} -lsqlite3 | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # Package Information for pkg-config prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: SQLite Description: SQL database engine Version: @PACKAGE_VERSION@ Libs: -L${libdir} -lsqlite3 Libs.private: @LDFLAGS_MATH@ @LDFLAGS_ZLIB@ @LDFLAGS_DLOPEN@ @LDFLAGS_PTHREAD@ @LDFLAGS_ICU@ Cflags: -I${includedir} |