9

I'm trying to build Postler from source. I branched it from bzr, and the first step in the install process says to navigate to the postler folder and type "./waf configure", which I did. Upon typing that, it runs a bunch of checks and decides SQLite3 isn't in the pkg-config search path. How do I get it in the search path? I already installed it via sudo apt-get install sqlite3. I'm running Ubuntu 11.10.

weberc2
  • 7,423
  • 4
  • 41
  • 57

2 Answers2

20

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

Roma
  • 446
  • 4
  • 9
1

you can use dpkg

 dpkg -L sqlite3
Viney
  • 171
  • 1
  • 4