Message406076
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 |
|
| Date |
User |
Action |
Args |
| 2021-11-10 08:08:29 | christian.heimes | set | recipients:
+ christian.heimes, erlendaasland |
| 2021-11-10 08:08:29 | christian.heimes | set | messageid: <[email protected]> |
| 2021-11-10 08:08:29 | christian.heimes | link | issue45774 messages |
| 2021-11-10 08:08:29 | christian.heimes | create | |
|