From 7b5934635d48ae01b924eb12042024b61f21c226 Mon Sep 17 00:00:00 2001 From: Matteo Bernardini Date: Wed, 1 Jan 2020 04:15:34 +0100 Subject: 20200101.1 global branch merge. Signed-off-by: Matteo Bernardini --- ...okerth-1.1.2-boost-1.66-remove-deprecated.patch | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 games/pokerth/pokerth-1.1.2-boost-1.66-remove-deprecated.patch (limited to 'games/pokerth/pokerth-1.1.2-boost-1.66-remove-deprecated.patch') diff --git a/games/pokerth/pokerth-1.1.2-boost-1.66-remove-deprecated.patch b/games/pokerth/pokerth-1.1.2-boost-1.66-remove-deprecated.patch new file mode 100644 index 0000000000..d265eb1db9 --- /dev/null +++ b/games/pokerth/pokerth-1.1.2-boost-1.66-remove-deprecated.patch @@ -0,0 +1,26 @@ +diff -Naur pokerth-1.1.2-rc.orig/src/net/common/clientthread.cpp pokerth-1.1.2-rc/src/net/common/clientthread.cpp +--- pokerth-1.1.2-rc.orig/src/net/common/clientthread.cpp 2017-08-16 14:24:03.000000000 +0200 ++++ pokerth-1.1.2-rc/src/net/common/clientthread.cpp 2017-12-23 21:48:58.660592917 +0100 +@@ -993,8 +993,7 @@ + newSock.reset(new boost::asio::ip::tcp::socket(*m_ioService, tcp::v6())); + else + newSock.reset(new boost::asio::ip::tcp::socket(*m_ioService, tcp::v4())); +- boost::asio::socket_base::non_blocking_io command(true); +- newSock->io_control(command); ++ newSock->non_blocking(true); + newSock->set_option(tcp::no_delay(true)); + newSock->set_option(boost::asio::socket_base::keep_alive(true)); + +diff -Naur pokerth-1.1.2-rc.orig/src/net/serveraccepthelper.h pokerth-1.1.2-rc/src/net/serveraccepthelper.h +--- pokerth-1.1.2-rc.orig/src/net/serveraccepthelper.h 2017-08-16 14:24:03.000000000 +0200 ++++ pokerth-1.1.2-rc/src/net/serveraccepthelper.h 2017-12-23 22:05:51.075613870 +0100 +@@ -122,8 +122,7 @@ + const boost::system::error_code &error) + { + if (!error) { +- boost::asio::socket_base::non_blocking_io command(true); +- acceptedSocket->io_control(command); ++ acceptedSocket->non_blocking(true); + acceptedSocket->set_option(typename P::no_delay(true)); + acceptedSocket->set_option(boost::asio::socket_base::keep_alive(true)); + boost::shared_ptr sessionData(new SessionData(acceptedSocket, m_lobbyThread->GetNextSessionId(), m_lobbyThread->GetSessionDataCallback(), *m_ioService)); -- cgit v1.2.3