This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients christian.heimes, erlendaasland
Date 2021-11-10.08:08:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1636531709.74.0.404906558289.issue45774@roundup.psfhosted.org>
In-reply-to
Content
I saw your message concerning sqlite3 on the FreeBSD buildbot. It's hard to tell why configure on FreeBSD doesn't find sqlite3.h without access to config.log or a shell. Maybe sqlite3 is installed in /usr/local ? ``configure`` does not use /usr/local/include and /usr/local/lib by default. ``setup.py`` extends the search paths for headers and libraries by non-standard locations.

A "config.site" file should do the trick:

$ mkdir -p /usr/local/etc
$ cat > /usr/local/etc/config.site << EOF
test -z "$CPPFLAGS" && CPPFLAGS="-I$/usr/local/include"
test -z "$LDFLAGS" && LDFLAGS="-L/usr/local/lib"
EOF
History
Date User Action Args
2021-11-10 08:08:29christian.heimessetrecipients: + christian.heimes, erlendaasland
2021-11-10 08:08:29christian.heimessetmessageid: <1636531709.74.0.404906558289.issue45774@roundup.psfhosted.org>
2021-11-10 08:08:29christian.heimeslinkissue45774 messages
2021-11-10 08:08:29christian.heimescreate