From owner-svn-ports-all@freebsd.org Tue Aug 14 19:43:41 2018 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 7923610581E0; Tue, 14 Aug 2018 19:43:41 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2ECAC8482B; Tue, 14 Aug 2018 19:43:41 +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 EB1942008C; Tue, 14 Aug 2018 19:43:40 +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 w7EJhesK090540; Tue, 14 Aug 2018 19:43:40 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7EJhetw090539; Tue, 14 Aug 2018 19:43:40 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201808141943.w7EJhetw090539@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 14 Aug 2018 19:43:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477200 - head/www/rubygem-passenger/files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/www/rubygem-passenger/files X-SVN-Commit-Revision: 477200 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 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: Tue, 14 Aug 2018 19:43:41 -0000 Author: jbeich Date: Tue Aug 14 19:43:40 2018 New Revision: 477200 URL: https://svnweb.freebsd.org/changeset/ports/477200 Log: www/rubygem-passenger: unbreak with libc++ 7 In file included from src/agent/Watchdog/WatchdogMain.cpp:68: In file included from src/agent/Watchdog/Config.h:32: In file included from src/agent/Core/Config.h:47: In file included from src/agent/Core/AdminPanelConnector.h:43: In file included from src/cxx_supportlib/WebSocketCommandReverseServer.h:29: In file included from src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio_no_tls_client.hpp:32: In file included from src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/endpoint.hpp:32: In file included from src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/connection.hpp:31: In file included from src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/base.hpp:31: In file included from src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/asio.hpp:65: In file included from src/cxx_supportlib/vendor-modified/boost/asio.hpp:23: In file included from src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp:20: In file included from src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp:40: In file included from src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp:22: In file included from src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp:27: In file included from src/cxx_supportlib/vendor-modified/boost/asio/detail/string_view.hpp:25: /usr/include/c++/v1/experimental/string_view:11:2: error: " has been removed. Use instead." PR: 230401 Reported by: antoine (via exp-run) Added: head/www/rubygem-passenger/files/patch-asio-libc++7 (contents, props changed) Added: head/www/rubygem-passenger/files/patch-asio-libc++7 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-passenger/files/patch-asio-libc++7 Tue Aug 14 19:43:40 2018 (r477200) @@ -0,0 +1,13 @@ +https://github.com/boostorg/asio/pull/135 + +--- src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp.orig 2018-04-11 13:49:00 UTC ++++ src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +@@ -777,7 +777,7 @@ + #if !defined(BOOST_ASIO_HAS_STD_STRING_VIEW) + # if !defined(BOOST_ASIO_DISABLE_STD_STRING_VIEW) + # if defined(__clang__) +-# if (__cplusplus >= 201703) ++# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX) || (__cplusplus >= 201703) + # if __has_include() + # define BOOST_ASIO_HAS_STD_STRING_VIEW 1 + # endif // __has_include()