Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Apr 2019 14:04:43 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r497831 - head/net-im/mtxclient/files
Message-ID:  <201904041404.x34E4h7s026507@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <iostream> // for std::cout
+ 
+ using namespace mtx::http;
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904041404.x34E4h7s026507>