Date: Tue, 12 Dec 2017 02:55:33 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456085 - branches/2017Q4/net/ns3 Message-ID: <201712120255.vBC2tXu5099155@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Tue Dec 12 02:55:33 2017 New Revision: 456085 URL: https://svnweb.freebsd.org/changeset/ports/456085 Log: MFH: r456078 net/ns3: require C++11 toolchain (on powerpc*, mips*, sparc*) cc1plus: error: unrecognized command line option "-std=c++11" ../examples/wireless/wifi-multi-tos.cc:124:24: error: no matching constructor for initialization of 'std::vector<uint8_t>' (aka 'vector<unsigned char>') std::vector<uint8_t> tosValues = {0x70, 0x28, 0xb8, 0xc0}; //AC_BE, AC_BK, AC_VI, AC_VO ^ ~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/4.2/bits/stl_vector.h:266:9: note: candidate constructor template not viable: requires at most 3 arguments, but 4 were provided vector(_InputIterator __first, _InputIterator __last, ^ /usr/include/c++/4.2/bits/stl_vector.h:224:7: note: candidate constructor not viable: requires at most 3 arguments, but 4 were provided vector(size_type __n, const value_type& __value = value_type(), ^ /usr/include/c++/4.2/bits/stl_vector.h:212:7: note: candidate constructor not viable: requires single argument '__a', but 4 arguments were provided vector(const allocator_type& __a) ^ /usr/include/c++/4.2/bits/stl_vector.h:242:7: note: candidate constructor not viable: requires single argument '__x', but 4 arguments were provided vector(const vector& __x) ^ /usr/include/c++/4.2/bits/stl_vector.h:208:7: note: candidate constructor not viable: requires 0 arguments, but 4 were provided vector() ^ 1 error generated. Reported by: pkg-fallout (mips64) Approved by: ports-secteam blanket Modified: branches/2017Q4/net/ns3/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/net/ns3/Makefile ============================================================================== --- branches/2017Q4/net/ns3/Makefile Tue Dec 12 02:53:33 2017 (r456084) +++ branches/2017Q4/net/ns3/Makefile Tue Dec 12 02:55:33 2017 (r456085) @@ -12,9 +12,7 @@ COMMENT= Network simulator for Internet systems LICENSE= GPLv2 -BROKEN_powerpc64= fails to compile: cc1plus: unrecognized command line option -std=c++11 - -USES= gettext pkgconfig python sqlite tar:bzip2 waf +USES= compiler:c++11-lib gettext pkgconfig python sqlite tar:bzip2 waf USE_GNOME= libxml2 USE_LDCONFIG= yes WRKSRC_SUBDIR= ns-${DISTVERSION}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712120255.vBC2tXu5099155>