svn commit: r497831 - head/net-im/mtxclient/files

Jan Beich jbeich at FreeBSD.org
Thu Apr 4 14:04:44 UTC 2019


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;
+ 


More information about the svn-ports-all mailing list