From owner-svn-ports-head@freebsd.org Mon Nov 21 03:52:39 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF962C477FC; Mon, 21 Nov 2016 03:52:39 +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 mx1.freebsd.org (Postfix) with ESMTPS id 858601224; Mon, 21 Nov 2016 03:52:39 +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 uAL3qcta038639; Mon, 21 Nov 2016 03:52:38 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAL3qcVw038637; Mon, 21 Nov 2016 03:52:38 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611210352.uAL3qcVw038637@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 21 Nov 2016 03:52:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426687 - in head/sysutils/freefilesync: . files X-SVN-Group: ports-head 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.23 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: Mon, 21 Nov 2016 03:52:39 -0000 Author: jbeich Date: Mon Nov 21 03:52:38 2016 New Revision: 426687 URL: https://svnweb.freebsd.org/changeset/ports/426687 Log: sysutils/freefilesync: unbreak with boost 1.62 on 11.0+ In file included from algorithm.cpp:13: In file included from ../../zen/guid.h:16: In file included from /usr/local/include/boost/uuid/uuid_generators.hpp:17: In file included from /usr/local/include/boost/uuid/random_generator.hpp:17: In file included from /usr/local/include/boost/shared_ptr.hpp:17: In file included from /usr/local/include/boost/smart_ptr/shared_ptr.hpp:28: In file included from /usr/local/include/boost/smart_ptr/detail/shared_count.hpp:29: In file included from /usr/local/include/boost/smart_ptr/detail/sp_counted_base.hpp:45: In file included from /usr/local/include/boost/smart_ptr/detail/sp_counted_base_clang.hpp:18: In file included from /usr/local/include/boost/detail/sp_typeinfo.hpp:20: In file included from /usr/local/include/boost/core/typeinfo.hpp:119: In file included from /usr/local/include/boost/core/demangle.hpp:32: /usr/include/c++/v1/cxxabi.h:190:19: error: '__cxa_get_globals' is missing exception specification 'noexcept' __cxa_eh_globals *__cxa_get_globals(void); ^ ../../zen/scope_guard.h:31:30: note: previous declaration is here extern "C" __cxa_eh_globals* __cxa_get_globals() noexcept; ^ PR: 214485 Reported by: antoine (via exp-run) Added: head/sysutils/freefilesync/files/patch-zen_scope__guard.h (contents, props changed) Modified: head/sysutils/freefilesync/Makefile (contents, props changed) Modified: head/sysutils/freefilesync/Makefile ============================================================================== --- head/sysutils/freefilesync/Makefile Mon Nov 21 03:15:05 2016 (r426686) +++ head/sysutils/freefilesync/Makefile Mon Nov 21 03:52:38 2016 (r426687) @@ -3,6 +3,7 @@ PORTNAME= freefilesync PORTVERSION= 8.3 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.freefilesync.org/download/ \ http://www.freefilesync.org/archive/ Added: head/sysutils/freefilesync/files/patch-zen_scope__guard.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/freefilesync/files/patch-zen_scope__guard.h Mon Nov 21 03:52:38 2016 (r426687) @@ -0,0 +1,11 @@ +--- ../../zen/scope_guard.h.orig 2016-03-31 20:08:04 UTC ++++ ../../zen/scope_guard.h +@@ -14,7 +14,7 @@ + //best of Zen, Loki and C++17 + + +-#ifdef ZEN_WIN ++#if defined(ZEN_WIN) || (defined(_LIBCPP_VERSION) && _LIBCPP_VERSION >= 3700) + inline int getUncaughtExceptionCount() { return std::uncaught_exceptions(); } + + #elif defined ZEN_LINUX || defined ZEN_MAC