libs/iostreams/src/bzip2.cpp:20:56: fatal error: bzlib.h: No such file or directory
Then I searched the web and found a nice explanation in this site.
I'll describe below a generic procedure to find which Ubuntu package contains some header file:
1) Install apt-file:
sudo su2) Search for packages containing the header file:
apt-get install apt-file
apt-file update
apt-file search bzlib.h3) Install the package:
apt-get install libbz2-dev
No comments:
Post a Comment