From owner-svn-src-projects@freebsd.org Fri Aug 10 21:40:29 2018 Return-Path: Delivered-To: svn-src-projects@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 3D0E51075C1B for ; Fri, 10 Aug 2018 21:40:29 +0000 (UTC) (envelope-from dim@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 E47AB7C2DC; Fri, 10 Aug 2018 21:40:28 +0000 (UTC) (envelope-from dim@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 C66F25F4E; Fri, 10 Aug 2018 21:40:28 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7ALeSRA033202; Fri, 10 Aug 2018 21:40:28 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7ALeSBY033201; Fri, 10 Aug 2018 21:40:28 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201808102140.w7ALeSBY033201@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Fri, 10 Aug 2018 21:40:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r337593 - projects/clang700-import/contrib/libc++/include X-SVN-Group: projects X-SVN-Commit-Author: dim X-SVN-Commit-Paths: projects/clang700-import/contrib/libc++/include X-SVN-Commit-Revision: 337593 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Aug 2018 21:40:29 -0000 Author: dim Date: Fri Aug 10 21:40:28 2018 New Revision: 337593 URL: https://svnweb.freebsd.org/changeset/base/337593 Log: Upstream libc++ added a using ::timespec_get line, when in C++17 or higher mode, in . Since we do not yet have this C11 function, comment out the line for now, as a workaround for a number of failing ports. Discussion with upstream is ongoing about an acceptable permanent fix. PR: 230400 Reported by: jbeich Modified: projects/clang700-import/contrib/libc++/include/ctime Modified: projects/clang700-import/contrib/libc++/include/ctime ============================================================================== --- projects/clang700-import/contrib/libc++/include/ctime Fri Aug 10 21:23:56 2018 (r337592) +++ projects/clang700-import/contrib/libc++/include/ctime Fri Aug 10 21:40:28 2018 (r337593) @@ -74,7 +74,7 @@ using ::localtime; #endif using ::strftime; #if _LIBCPP_STD_VER > 14 && defined(_LIBCPP_HAS_C11_FEATURES) -using ::timespec_get; +//using ::timespec_get; #endif _LIBCPP_END_NAMESPACE_STD