From owner-svn-ports-head@freebsd.org Tue Aug 14 19:43:20 2018 Return-Path: Delivered-To: svn-ports-head@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 6B8E11058188; Tue, 14 Aug 2018 19:43:20 +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 208058471C; Tue, 14 Aug 2018 19:43:20 +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 017602008A; Tue, 14 Aug 2018 19:43:20 +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 w7EJhJxv090399; Tue, 14 Aug 2018 19:43:19 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7EJhJEt090398; Tue, 14 Aug 2018 19:43:19 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201808141943.w7EJhJEt090398@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:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477199 - head/emulators/mame/files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/emulators/mame/files X-SVN-Commit-Revision: 477199 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2018 19:43:20 -0000 Author: jbeich Date: Tue Aug 14 19:43:19 2018 New Revision: 477199 URL: https://svnweb.freebsd.org/changeset/ports/477199 Log: emulators/mame: unbreak with libc++ 7 In file included from ../../../../../src/emu/http.cpp:12: In file included from ../../../../../src/lib/util/server_ws_impl.hpp:8: In file included from ../../../../../src/osd/asio.h:34: In file included from ../../../../../3rdparty/asio/include/asio.hpp:21: In file included from ../../../../../3rdparty/asio/include/asio/basic_datagram_socket.hpp:20: In file included from ../../../../../3rdparty/asio/include/asio/basic_socket.hpp:40: In file included from ../../../../../3rdparty/asio/include/asio/detail/reactive_socket_service.hpp:22: In file included from ../../../../../3rdparty/asio/include/asio/buffer.hpp:27: In file included from ../../../../../3rdparty/asio/include/asio/detail/string_view.hpp:23: /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/emulators/mame/files/patch-asio-libc++7 (contents, props changed) Added: head/emulators/mame/files/patch-asio-libc++7 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/mame/files/patch-asio-libc++7 Tue Aug 14 19:43:19 2018 (r477199) @@ -0,0 +1,15 @@ +https://github.com/boostorg/asio/commit/b5b17a67f0aa29f5156324d5e8a73dd8669a5a51 + +--- 3rdparty/asio/include/asio/detail/config.hpp.orig 2018-07-24 19:45:05 UTC ++++ 3rdparty/asio/include/asio/detail/config.hpp +@@ -708,8 +708,9 @@ + # if !defined(ASIO_DISABLE_STD_STRING_VIEW) + # if defined(__clang__) + # if (__cplusplus >= 201103) +-# if __has_include() ++# if __has_include() + # define ASIO_HAS_STD_STRING_VIEW 1 ++# elif __has_include() + # define ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW 1 + # endif // __has_include() + # endif // (__cplusplus >= 201103)