From owner-svn-ports-all@freebsd.org Thu Apr 4 14:04:44 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07CE11571D63; Thu, 4 Apr 2019 14:04:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9CFF071E8E; Thu, 4 Apr 2019 14:04:43 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 68A5E2665C; Thu, 4 Apr 2019 14:04:43 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x34E4hc8026508; Thu, 4 Apr 2019 14:04:43 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x34E4h7s026507; Thu, 4 Apr 2019 14:04:43 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201904041404.x34E4h7s026507@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 4 Apr 2019 14:04:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r497831 - head/net-im/mtxclient/files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/net-im/mtxclient/files X-SVN-Commit-Revision: 497831 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9CFF071E8E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Apr 2019 14:04:44 -0000 Author: jbeich Date: Thu Apr 4 14:04:42 2019 New Revision: 497831 URL: https://svnweb.freebsd.org/changeset/ports/497831 Log: net-im/mtxclient: unbreak with boost 1.70 lib/http/session.cpp:60:22: error: no member named 'cout' in namespace 'std' std::cout << "shutdown: " << ec.message() << std::endl; ~~~~~^ lib/http/session.cpp:155:22: error: no member named 'cerr' in namespace 'std' std::cerr << ec.message() << "\n"; ~~~~~^ Added: head/net-im/mtxclient/files/patch-lib_http_session.cpp (contents, props changed) Added: head/net-im/mtxclient/files/patch-lib_http_session.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/mtxclient/files/patch-lib_http_session.cpp Thu Apr 4 14:04:42 2019 (r497831) @@ -0,0 +1,10 @@ +https://github.com/Nheko-Reborn/mtxclient/issues/11 + +--- lib/http/session.cpp.orig 2018-09-21 18:29:59 UTC ++++ lib/http/session.cpp +@@ -1,4 +1,5 @@ + #include "mtxclient/http/session.hpp" ++#include // for std::cout + + using namespace mtx::http; +