< Previous by Date | Date Index | Next by Date > |
< Previous in Thread | Thread Index | Next in Thread > |
Looking at the reTurn error, you need asio.hpp
Are you using the latest spec file? It should check for the asio devel
package:
BuildRequires: asio-devel
You could do
find /usr/include -name asio.hpp
to make sure it is really there and if it is in a custom location (NOT
boost asio though) you can use
./configure CXXFLAGS="-I/opt/my-asio-headers/include" ......