From owner-svn-ports-branches@freebsd.org Tue Dec 12 02:48:15 2017 Return-Path: Delivered-To: svn-ports-branches@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 90C92E8882A; Tue, 12 Dec 2017 02:48:15 +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 69635669AD; Tue, 12 Dec 2017 02:48:15 +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 vBC2mELc094743; Tue, 12 Dec 2017 02:48:14 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC2mEpT094742; Tue, 12 Dec 2017 02:48:14 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712120248.vBC2mEpT094742@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 12 Dec 2017 02:48:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456081 - branches/2017Q4/devel/breakpad X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/devel/breakpad X-SVN-Commit-Revision: 456081 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Dec 2017 02:48:15 -0000 Author: jbeich Date: Tue Dec 12 02:48:14 2017 New Revision: 456081 URL: https://svnweb.freebsd.org/changeset/ports/456081 Log: MFH: r456076 devel/breakpad: require C++11 toolchain (on powerpc*, mips*, sparc*) checking whether /nxb-bin/usr/bin/c++ supports C++11 features by default... no checking whether /nxb-bin/usr/bin/c++ supports C++11 features with -std=c++11... no checking whether /nxb-bin/usr/bin/c++ supports C++11 features with -std=c++0x... no checking whether /nxb-bin/usr/bin/c++ supports C++11 features with +std=c++11... no checking whether /nxb-bin/usr/bin/c++ supports C++11 features with -h std=c++11... no configure: error: *** A compiler with support for C++11 language features is required. In file included from src/processor/basic_code_modules.cc:46: ./src/processor/range_map-inl.h:132:14: error: no matching member function for call to 'erase' map_.erase(iterator_high); ~~~~~^~~~~ ./src/processor/range_map-inl.h:64:10: note: in instantiation of member function 'google_breakpad::RangeMap >::StoreRangeInternal' requested here return StoreRangeInternal(base, 0 /* delta */, size, entry); ^ src/processor/basic_code_modules.cc:71:15: note: in instantiation of member function 'google_breakpad::RangeMap >::StoreRange' requested here if (!map_.StoreRange(module->base_address(), module->size(), module)) { ^ /usr/include/c++/4.2/bits/stl_map.h:453:7: note: candidate function not viable: no known conversion from 'google_breakpad::RangeMap >::MapConstIterator' (aka '_Rb_tree_const_iterator >::Range> >') to 'std::map >::Range, std::less, std::allocator >::Range> > >::iterator' (aka '_Rb_tree_iterator >::Range> >') for 1st argument erase(iterator __position) ^ /usr/include/c++/4.2/bits/stl_map.h:468:7: note: candidate function not viable: no known conversion from 'google_breakpad::RangeMap >::MapConstIterator' (aka '_Rb_tree_const_iterator >::Range> >') to 'const std::map >::Range, std::less, std::allocator >::Range> > >::key_type' (aka 'const unsigned long') for 1st argument erase(const key_type& __x) ^ /usr/include/c++/4.2/bits/stl_map.h:483:7: note: candidate function not viable: requires 2 arguments, but 1 was provided erase(iterator __first, iterator __last) ^ 1 error generated. Reported by: pkg-fallout (mips64) Approved by: ports-secteam blanket Modified: branches/2017Q4/devel/breakpad/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/devel/breakpad/Makefile ============================================================================== --- branches/2017Q4/devel/breakpad/Makefile Tue Dec 12 02:45:33 2017 (r456080) +++ branches/2017Q4/devel/breakpad/Makefile Tue Dec 12 02:48:14 2017 (r456081) @@ -11,7 +11,7 @@ COMMENT= Client/server based crash-reporting system LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= autoreconf +USES= autoreconf compiler:c++11-lib GNU_CONFIGURE= yes USE_GITHUB= yes