Package: frogatto
Version: 1.3.1+dfsg-4
Severity: wishlist
Tags: patch
User: team+bo...@tracker.debian.org
Usertags: boost1.71

Dear Maintainer,

your package fails to build with boost1.71. You can find a build log
attached. If you want to attempt the build yourself, an updated version
of boost-defaults which brings in boost1.71 dependencies can be found
adding this line to your sources.list file:

  deb https://people.debian.org/~gio/reprepro gio main

This bug has severity whishlist for the moment, but it will raised to RC
as soon as version 1.71 of Boost is promoted to default.

More specifically, your package fails building because it uses a retired
API from Boost.Asio. The attached patch should fix the bug.

Thanks and all the best, Giovanni.
-- 
Giovanni Mascellani <g.mascell...@gmail.com>
Postdoc researcher - Université Libre de Bruxelles
Index: frogatto-1.3.1+dfsg/src/http_server.cpp
===================================================================
--- frogatto-1.3.1+dfsg.orig/src/http_server.cpp
+++ frogatto-1.3.1+dfsg/src/http_server.cpp
@@ -31,7 +31,7 @@ web_server::web_server(boost::asio::io_s
 
 void web_server::start_accept()
 {
-	socket_ptr socket(new tcp::socket(acceptor_.get_io_service()));
+	socket_ptr socket(new tcp::socket(acceptor_.get_executor()));
 	acceptor_.async_accept(*socket, boost::bind(&web_server::handle_accept, this, socket, boost::asio::placeholders::error));
 
 }

Attachment: frogatto.log.gz
Description: application/gzip

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to