Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

BoostBuild: patchlevel.h does not exist

I'm trying to compile a C++ project using bjam on Ubuntu 11.04. I keep getting the following error:

../../libraries/boost_1_44_0/boost/python/detail/wrap_python.hpp:75:24: fatal error: patchlevel.h: No such file or directory

I searched my project directory and there are several files named patchlevel.h but I don't know what they are. Are they part of Boost?

I also get this error several times:

pa-vision-lib/../captureformat.h:4:25: fatal error: linux/ovcam.h: No such file or directory

This file also definitely exists. Is there a path setting of some sort in any of the Boost config files that I need to change to point to these files?

like image 456
Matt Avatar asked Jul 21 '11 20:07

Matt


2 Answers

IIRC patchlevel.h is a python-dev header, check this package is installed (i dont remember the exact name but it si the C header for python binding).

ovcam.h is not part of boost in anyway.

like image 133
Joel Falcou Avatar answered Nov 19 '22 17:11

Joel Falcou


For Ubuntu Server 12.04 LTS, please try:

apt-get install python-dev

like image 29
killx-r0x Avatar answered Nov 19 '22 19:11

killx-r0x