From owner-svn-ports-head@freebsd.org Wed Aug 8 12:31:41 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 6A7C2105AF57; Wed, 8 Aug 2018 12:31: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 0637E7C0E7; Wed, 8 Aug 2018 12:31: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 DC16B26E9; Wed, 8 Aug 2018 12:31: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 w78CVenN046501; Wed, 8 Aug 2018 12:31:40 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w78CVeXY046500; Wed, 8 Aug 2018 12:31:40 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201808081231.w78CVeXY046500@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 8 Aug 2018 12:31:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476640 - in head/databases/mongodb36: . files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/databases/mongodb36: . files X-SVN-Commit-Revision: 476640 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: Wed, 08 Aug 2018 12:31:41 -0000 Author: jbeich Date: Wed Aug 8 12:31:40 2018 New Revision: 476640 URL: https://svnweb.freebsd.org/changeset/ports/476640 Log: databases/mongodb36: unbreak with libc++ 7 In file included from src/third_party/asio-master/asio/src/asio.cpp:11: In file included from src/third_party/asio-master/asio/include/asio/impl/src.hpp:44: In file included from src/third_party/asio-master/asio/include/asio/detail/impl/reactive_descriptor_service.ipp:25: In file included from src/third_party/asio-master/asio/include/asio/detail/reactive_descriptor_service.hpp:24: In file included from src/third_party/asio-master/asio/include/asio/buffer.hpp:27: In file included from src/third_party/asio-master/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 Added: head/databases/mongodb36/files/patch-asio-libc++7 (contents, props changed) Modified: head/databases/mongodb36/Makefile (contents, props changed) Modified: head/databases/mongodb36/Makefile ============================================================================== --- head/databases/mongodb36/Makefile Wed Aug 8 12:26:27 2018 (r476639) +++ head/databases/mongodb36/Makefile Wed Aug 8 12:31:40 2018 (r476640) @@ -3,6 +3,7 @@ PORTNAME= mongodb DISTVERSIONPREFIX= r DISTVERSION= 3.6.6 +PORTREVISION= 1 CATEGORIES= databases net MASTER_SITES= https://fastdl.mongodb.org/src/ \ http://fastdl.mongodb.org/src/ \ Added: head/databases/mongodb36/files/patch-asio-libc++7 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/mongodb36/files/patch-asio-libc++7 Wed Aug 8 12:31:40 2018 (r476640) @@ -0,0 +1,15 @@ +https://github.com/boostorg/asio/commit/b5b17a67f0aa29f5156324d5e8a73dd8669a5a51 + +--- src/third_party/asio-master/asio/include/asio/detail/config.hpp.orig 2018-07-03 21:09:33 UTC ++++ src/third_party/asio-master/asio/include/asio/detail/config.hpp +@@ -784,8 +784,9 @@ + # if !defined(ASIO_DISABLE_STD_STRING_VIEW) + # if defined(__clang__) + # if (__cplusplus >= 201402) +-# 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 >= 201402)