From owner-svn-ports-head@freebsd.org Tue Dec 12 02:22:11 2017 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 5C169E86FCB; Tue, 12 Dec 2017 02:22:11 +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 368AF65505; Tue, 12 Dec 2017 02:22:11 +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 vBC2MASX083311; Tue, 12 Dec 2017 02:22:10 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC2MA3a083310; Tue, 12 Dec 2017 02:22:10 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712120222.vBC2MA3a083310@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:22:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456076 - head/devel/breakpad X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/devel/breakpad X-SVN-Commit-Revision: 456076 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.25 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, 12 Dec 2017 02:22:11 -0000 Author: jbeich Date: Tue Dec 12 02:22:10 2017 New Revision: 456076 URL: https://svnweb.freebsd.org/changeset/ports/456076 Log: 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) Modified: head/devel/breakpad/Makefile (contents, props changed) Modified: head/devel/breakpad/Makefile ============================================================================== --- head/devel/breakpad/Makefile Tue Dec 12 02:16:08 2017 (r456075) +++ head/devel/breakpad/Makefile Tue Dec 12 02:22:10 2017 (r456076) @@ -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