head 1.2; access; symbols pkgsrc-2025Q3:1.1.0.6 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.4 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.2 pkgsrc-2025Q1-base:1.1; locks; strict; comment @// @; 1.2 date 2025.09.30.06.49.38; author adam; state dead; branches; next 1.1; commitid Z4ngQRNvuPyUMHcG; 1.1 date 2025.01.31.16.20.06; author wiz; state Exp; branches; next ; commitid wvpkpXWhV6NVIEHF; desc @@ 1.2 log @snapcast: updated to 0.33.0 0.33.0 Features Server: Add PipeWire stream reader Client: Add PipeWire player Server: process stream sources can be added via RPC Server: mDNS can be disabled Server: Audio streaming over plain TCP (port 1704) can be disabled Server: Add control script for go-librespot Bugfixes Client: Fix case of command line arguments Client: Fix deadlock during shutdown Fix building with boost v1.89.0 Fix MacOS CI General Server: Log warning if default config is missing Server: Make SSL support optional (-DBUILD_WITH_SSL) Make ALSA optional Enable OpenSSL support for Android builds in CMakeLists.txt Update Readme Build Trixie packages for amd64 tcp section in snapserver.conf renamed to tcp-control TCP streaming settings moved from stream to tcp-streaming @ text @$NetBSD: patch-server_streamreader_tcp__stream.cpp,v 1.1 2025/01/31 16:20:06 wiz Exp $ Fix build with boost 1.87. --- server/streamreader/tcp_stream.cpp.orig 2025-01-31 16:01:18.779914892 +0000 +++ server/streamreader/tcp_stream.cpp @@@@ -64,7 +64,7 @@@@ TcpStream::TcpStream(PcmStream::Listener LOG(INFO, LOG_TAG) << "TcpStream host: " << host_ << ", port: " << port_ << ", is server: " << is_server_ << "\n"; if (is_server_) - acceptor_ = make_unique(strand_, tcp::endpoint(boost::asio::ip::address::from_string(host_), port_)); + acceptor_ = make_unique(strand_, tcp::endpoint(boost::asio::ip::make_address(host_), port_)); } @@@@ -91,7 +91,7 @@@@ void TcpStream::do_connect() else { stream_ = make_unique(strand_); - boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::address::from_string(host_), port_); + boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::make_address(host_), port_); stream_->async_connect(endpoint, [this](const boost::system::error_code& ec) { if (!ec) { @ 1.1 log @snapcast: fix build with boost 1.87 Convert to cmake/build.mk while here. @ text @d1 1 a1 1 $NetBSD$ @