Package: laserboy / 2024.03.08+dfsg-3

Metadata

Package Version Patches format
laserboy 2024.03.08+dfsg-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
remove amd64 specific.patch | (download)

src/Makefile | 2 0 + 2 - 0 !
1 file changed, 2 deletions(-)

 remove amd64 specific compilation options


fix boost 1.88 ftbfs.patch | (download)

src/LaserBoy_common.cpp | 11 5 + 6 - 0 !
1 file changed, 5 insertions(+), 6 deletions(-)

 fix ftbfs on boost 1.88
  * io_service was deprecated and removed in Asio 1.33.0. Boost 1.88 ships
    Asio 1.34.2, which already includes this breaking change. In this case,
    io_context should be used instead.
    (see: https://github.com/boostorg/asio/issues/110 and
    https://www.boost.org/doc/libs/latest/doc/html/boost_asio/history.html).
  * tcp::resolver::query and tcp::resolver::iterator were deprecated and
    removed. The new way to resolve endpoints is to use the resolve method
    directly.
    (see: https://www.boost.org/doc/libs/1_88_0/doc/html/boost_asio/reference/ip__basic_resolver/resolve.html).
  * The resolve method returns a range object, which can be passed directly
    to boost::asio::connect.
    (see: https://www.boost.org/doc/libs/1_88_0/doc/html/boost_asio/reference/connect.html).