Solved Libsqlite3 missing

Hi guys,

I am trying a friend to release his next version:


But it looks like is a bit too much linux-y and I cannot find the right library replacement for sqlite3:

Code:
configure: error: Can not find libsqlite3.
freezer@gem:~/tinmop $ doas pkg install sqlite3
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed


Any ideas?

Thanks!
 
LDFLAGS="-L /usr/local/lib" ./configure

with my finger on the trigger
i run dot-slash configure
yo, this package is big
but my package is bigger
 
covacat thanks, you reminded me that I already had the answer to this question:

Code:
./configure CFLAGS='-I /usr/local/include' LDFLAGS='-L /usr/local/lib'

I wonder if this issue is a Linuxism or is the default behavior in FreeBSD... 🤷‍♂️
 
Back
Top