How to get SQLite3 in pkg-config search path so that I can build Postler from source code?

I am trying to build a Postler from a source. I forked it from bzr, and the first step in the installation process says to go to the postler folder and type β€œ./waf configure”, which I did. After typing this, he starts a bunch of checks and decides that SQLite3 is not in the pkg-config search path. How to get it in the search path? I already installed it through sudo apt-get install sqlite3 . I am running Ubuntu 11.10.

+4
source share
2 answers

You need to install the development package through sudo apt-get install libsqlite3-dev .

+11
source

you can use dpkg

  dpkg -L sqlite3
0
source

Source: https://habr.com/ru/post/1398487/


All Articles