Boost::asio not on Debian Wheezy?

boost, c++, debian

Solution

Debian Wheezy uses Boost 1.49.

The package `libboost-all-dev` will provide all boost development files, including boost::asio.

Edit from comment:

Package libboost-all-dev requires libboost-dev, which requires libboost1.49-dev. Boost::asio is there.

It will be installed to /usr/include/boost/

Problem

Boost::asio is included in Boost since version 1.35. However I cant find asio in the boost repositories for Debian Wheezy, although its version 1.48. Are they not supported?

Original source