Bug#1129785: frogatto: FTBFS: src/http_client.hpp:19:87: error: 'boost::asio::io_service' has not been declared; did you mean 'boost::asio::use_service'?
Santiago Vila
sanvila at debian.org
Thu Mar 5 23:13:01 GMT 2026
Package: src:frogatto
Version: 1.3.1+dfsg-8
Severity: serious
Tags: ftbfs forky sid
Dear maintainer:
During a rebuild of all packages in unstable, this package failed to build.
Below you will find the last part of the build log (probably the most
relevant part, but not necessarily). If required, the full build log
is available here:
https://people.debian.org/~sanvila/build-logs/202603/
About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.
If you cannot reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.
If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:frogatto, so that this is still
visible in the BTS web page for this package.
Thanks.
--------------------------------------------------------------------------------
[...]
debian/rules clean
dh clean
dh_auto_clean
make -j2 clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
rm -f *.o *.d game
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_clean
debian/rules execute_after_dh_clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
find -name \*.o -delete
find -name \*.mo -delete
find -name \*.d -delete
rm -f game frogatto.6
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
debian/rules binary
dh binary
dh_update_autotools_config
dh_autoreconf
dh_auto_configure
debian/rules override_dh_auto_build
make[1]: Entering directory '/<<PKGBUILDDIR>>'
pod2man --section=6 debian/frogatto.pod > frogatto.6
dh_auto_build USE_CCACHE=no
make -j2 INSTALL="install --strip-program=true"
make[2]: Entering directory '/<<PKGBUILDDIR>>'
g++ \
-O2 -g -fno-inline-functions -fthreadsafe-statics -Wnon-virtual-dtor -Wignored-qualifiers -Wformat -Wswitch -Wno-narrowing -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -DUSE_GLES2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/include/libpng16 -DIMPLEMENT_SAVE_PNG \
-c src/IMG_savepng.cpp
g++ \
-O2 -g -fno-inline-functions -fthreadsafe-statics -Wnon-virtual-dtor -Wignored-qualifiers -Wformat -Wswitch -Wno-narrowing -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -DUSE_GLES2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/include/libpng16 -DIMPLEMENT_SAVE_PNG \
-c src/achievements.cpp
In file included from /usr/include/boost/bind.hpp:30,
from src/IMG_savepng.cpp:34:
/usr/include/boost/bind.hpp:36:1: note: â#pragma message: The practice of declaring the Bind placeholders (_1, _2, ...) in the global namespace is deprecated. Please use <boost/bind/bind.hpp> + using namespace boost::placeholders, or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior.â
36 | BOOST_PRAGMA_MESSAGE(
| ^~~~~~~~~~~~~~~~~~~~
In file included from src/IMG_savepng.cpp:42:
src/http_client.hpp:19:87: error: âboost::asio::io_serviceâ has not been declared; did you mean âboost::asio::use_serviceâ?
19 | http_client(const std::string& host, const std::string& port, int session=-1, boost::asio::io_service* service=NULL);
| ^~~~~
src/http_client.hpp:34:40: error: âio_serviceâ is not a member of âboost::asioâ; did you mean âuse_serviceâ?
34 | boost::shared_ptr<boost::asio::io_service> io_service_buf_;
| ^~~~~~~~~~
| use_service
src/http_client.hpp:34:50: error: template argument 1 is invalid
34 | boost::shared_ptr<boost::asio::io_service> io_service_buf_;
| ^
src/http_client.hpp:35:22: error: âio_serviceâ in namespace âboost::asioâ does not name a type; did you mean âuse_serviceâ?
35 | boost::asio::io_service& io_service_;
| ^~~~~~~~~~
| use_service
src/http_client.hpp:38:60: error: expected â)â before â&â token
38 | explicit Connection(boost::asio::io_service& serv) : socket(serv), nbytes_sent(0), expected_len(-1)
| ~ ^
| )
src/http_client.hpp:55:67: error: âboost::asio::ip::resolver::iteratorâ has not been declared
55 | void handle_resolve(const boost::system::error_code& err, tcp::resolver::iterator endpoint_iterator, connection_ptr conn);
| ^~~
src/http_client.hpp:56:90: error: âboost::asio::ip::resolver::iteratorâ has not been declared
56 | void handle_connect(const boost::system::error_code& error, connection_ptr conn, tcp::resolver::iterator resolve_itor);
| ^~~
src/http_client.hpp:62:24: error: âqueryâ in âboost::asio::ip::tcp::resolverâ {aka âclass boost::asio::ip::basic_resolver<boost::asio::ip::tcp>â} does not name a type
62 | tcp::resolver::query resolver_query_;
| ^~~~~
src/http_client.hpp:63:24: error: âiteratorâ in âboost::asio::ip::tcp::resolverâ {aka âclass boost::asio::ip::basic_resolver<boost::asio::ip::tcp>â} does not name a type
63 | tcp::resolver::iterator endpoint_iterator_;
| ^~~~~~~~
make[2]: *** [Makefile:49: IMG_savepng.o] Error 1
make[2]: *** Waiting for unfinished jobs....
g++ -O2 -g -fno-inline-functions -fthreadsafe-statics -Wnon-virtual-dtor -Wignored-qualifiers -Wformat -Wswitch -Wno-narrowing -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -DUSE_GLES2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/include/libpng16 -DIMPLEMENT_SAVE_PNG -MM src/achievements.cpp > achievements.d
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j2 INSTALL="install --strip-program=true" returned exit code 2
make[1]: *** [debian/rules:32: override_dh_auto_build] Error 25
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:29: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess failed with exit status 2
--------------------------------------------------------------------------------
More information about the Pkg-games-devel
mailing list