Comment 4 for bug 1492287

Revision history for this message
Paweł Stołowski (stolowski) wrote :

There is now a slightly more complicated check in the CMakeLists.txt:

# Ubuntu xenial needs python 3.5
if(${DISTRIBUTION} MATCHES "vivid" OR ${DISTRIBUTION} MATCHES "wily")
    find_package(PythonLibs 3.4 REQUIRED)
    find_package(Boost COMPONENTS python-py34 REQUIRED)
else()
    find_package(PythonLibs 3.5 REQUIRED)
    find_package(Boost COMPONENTS python-py35 REQUIRED)
endif()

I'm not sure if there is a better fix for this?