From owner-svn-ports-branches@freebsd.org Mon Dec 11 00:04:26 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 292D8E80190; Mon, 11 Dec 2017 00:04:26 +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 E87DF69375; Mon, 11 Dec 2017 00:04:25 +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 vBB04PjE007461; Mon, 11 Dec 2017 00:04:25 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBB04PN9007460; Mon, 11 Dec 2017 00:04:25 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712110004.vBB04PN9007460@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 11 Dec 2017 00:04:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r455915 - branches/2017Q4/textproc/hunspell X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/textproc/hunspell X-SVN-Commit-Revision: 455915 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: Mon, 11 Dec 2017 00:04:26 -0000 Author: jbeich Date: Mon Dec 11 00:04:24 2017 New Revision: 455915 URL: https://svnweb.freebsd.org/changeset/ports/455915 Log: MFH: r455904 textproc/hunspell: always link against C++11 library C++11 isn't ABI-compatible with C++98 on GCC platforms, so build the port using lang/gcc which since r449590 defaults to C++14. This should fix C++11 consumers like www/firefox. ../../extensions/spellcheck/hunspell/glue/Unified_cpp_hunspell_glue0.o: In function `mozHunspell::SetDictionary(char16_t const*)': Unified_cpp_hunspell_glue0.cpp:(.text._ZN11mozHunspell13SetDictionaryEPKDs+0x4a4): undefined reference to `Hunspell::get_dict_encoding[abi:cxx11]() const' ../../extensions/spellcheck/hunspell/glue/Unified_cpp_hunspell_glue0.o: In function `mozHunspell::Check(char16_t const*, bool*)': Unified_cpp_hunspell_glue0.cpp:(.text._ZN11mozHunspell5CheckEPKDsPb+0x148): undefined reference to `Hunspell::spell(std::__cxx11::basic_string, std::allocator > const&, int*, std::__cxx11::basic_string, std::allocator >*)' ../../extensions/spellcheck/hunspell/glue/Unified_cpp_hunspell_glue0.o: In function `mozHunspell::Suggest(char16_t const*, char16_t***, unsigned int*)': Unified_cpp_hunspell_glue0.cpp:(.text._ZN11mozHunspell7SuggestEPKDsPPPDsPj+0x16c): undefined reference to `Hunspell::suggest(std::__cxx11::basic_string, std::allocator > const&)' Submitted by: jhibbits (based on) Approved by: ports-secteam blanket Differential Revision: https://reviews.freebsd.org/D12515 Modified: branches/2017Q4/textproc/hunspell/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/textproc/hunspell/Makefile ============================================================================== --- branches/2017Q4/textproc/hunspell/Makefile Sun Dec 10 21:44:24 2017 (r455914) +++ branches/2017Q4/textproc/hunspell/Makefile Mon Dec 11 00:04:24 2017 (r455915) @@ -19,8 +19,8 @@ LICENSE_FILE_MPL11= ${WRKSRC}/COPYING.MPL CONFLICTS_INSTALL= tinker-[0-9]* CONFIGURE_ARGS= --disable-nls ${ICONV_CONFIGURE_ARG} --with-readline --with-ui GNU_CONFIGURE= yes -USES= autoreconf libtool:keepla pathfix iconv ncurses \ - readline shebangfix perl5 +USES= autoreconf compiler:c++11-lib libtool:keepla pathfix \ + iconv ncurses readline shebangfix perl5 USE_GITHUB= yes SHEBANG_FILES= src/tools/ispellaff2myspell USE_LDCONFIG= yes From owner-svn-ports-branches@freebsd.org Mon Dec 11 00:07:17 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 EF923E802FA; Mon, 11 Dec 2017 00:07:17 +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 BC13B694CF; Mon, 11 Dec 2017 00:07:17 +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 vBB07GPB007707; Mon, 11 Dec 2017 00:07:16 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBB07GaD007706; Mon, 11 Dec 2017 00:07:16 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712110007.vBB07GaD007706@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 11 Dec 2017 00:07:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r455916 - branches/2017Q4/devel/boost-libs X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/devel/boost-libs X-SVN-Commit-Revision: 455916 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: Mon, 11 Dec 2017 00:07:18 -0000 Author: jbeich Date: Mon Dec 11 00:07:16 2017 New Revision: 455916 URL: https://svnweb.freebsd.org/changeset/ports/455916 Log: MFH: r455905 devel/boost-libs: pass RPATH when building with GCC "g++6" -o "bin.v2/libs/stacktrace/build/gcc-6.4.0/debug/addr2line_exe" -Wl,--start-group "bin.v2/libs/stacktrace/build/gcc-6.4.0/debug/has_addr2line.o" -Wl,-Bstatic -Wl,-Bdynamic -Wl,--end-group -g -m64 /usr/lib/libstdc++.so.6: version GLIBCXX_3.4.21 required by /wrkdirs/usr/ports/devel/boost-libs/work/boost_1_65_1/bin.v2/libs/stacktrace/build/gcc-6.4.0/debug/addr2line_exe not found [...] Error: Missing: lib/libboost_stacktrace_addr2line.a Error: Missing: lib/libboost_stacktrace_addr2line.so Error: Missing: lib/libboost_stacktrace_addr2line.so.%%BOOST_SHARED_LIB_VER%% PR: 223279 Submitted by: jhibbits (based on) Approved by: ports-secteam blanket Modified: branches/2017Q4/devel/boost-libs/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/devel/boost-libs/Makefile ============================================================================== --- branches/2017Q4/devel/boost-libs/Makefile Mon Dec 11 00:04:24 2017 (r455915) +++ branches/2017Q4/devel/boost-libs/Makefile Mon Dec 11 00:07:16 2017 (r455916) @@ -31,6 +31,8 @@ ICU_MAKE_ARGS_OFF= boost.locale.icu=off .include "${.CURDIR}/../boost-all/compiled.mk" MAKE_ARGS+= --without-python +MAKE_ARGS+= ${MAKE_ARGS_${CHOSEN_COMPILER_TYPE}} +MAKE_ARGS_gcc= xdll-path=${_GCC_RUNTIME} ALL_TARGET= stage do-install: From owner-svn-ports-branches@freebsd.org Mon Dec 11 02:18:58 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 9064AE82B92; Mon, 11 Dec 2017 02:18:58 +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 5D5986C858; Mon, 11 Dec 2017 02:18:58 +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 vBB2Ivt3061648; Mon, 11 Dec 2017 02:18:57 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBB2Ivi9061647; Mon, 11 Dec 2017 02:18:57 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712110218.vBB2Ivi9061647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 11 Dec 2017 02:18:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r455918 - branches/2017Q4/graphics/vigra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/graphics/vigra X-SVN-Commit-Revision: 455918 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: Mon, 11 Dec 2017 02:18:58 -0000 Author: jbeich Date: Mon Dec 11 02:18:57 2017 New Revision: 455918 URL: https://svnweb.freebsd.org/changeset/ports/455918 Log: MFH: r455917 graphics/vigra: unbreak consumers on 10.* for NUMPY=on Passing -std=gnu++11 also matches Boost since r450557. /usr/local/lib/libvigraimpex.so: undefined reference to `operator delete(void*, unsigned int)' Reported by: antoine (via bug 223922 -exp run) Submitted by: rakuco (adapted from bug 219484 fix) Approved by: ports-secteam blanket Modified: branches/2017Q4/graphics/vigra/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/graphics/vigra/Makefile ============================================================================== --- branches/2017Q4/graphics/vigra/Makefile Mon Dec 11 02:16:35 2017 (r455917) +++ branches/2017Q4/graphics/vigra/Makefile Mon Dec 11 02:18:57 2017 (r455918) @@ -3,7 +3,7 @@ PORTNAME= vigra DISTVERSION= 1.11.0 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= graphics PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ @@ -50,6 +50,12 @@ NUMPY_BUILD_DEPENDS= nosetests:devel/py-nose \ NUMPY_RUN_DEPENDS= nosetests:devel/py-nose \ f2py:math/py-numpy NUMPY_LIB_DEPENDS= libboost_python.so:devel/boost-python-libs +# On FreeBSD < 11 libc++ lacks support for sized delete operators. +# GCC dropped the builtin version of these operators in 6+ by +# defaulting to gnu++14. Force c++11 instead. +# For a more detailed discussion see: +# https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=219484 +NUMPY_CXXFLAGS= -std=gnu++11 PNG_CMAKE_BOOL= WITH_PNG PNG_LIB_DPEENDS= libpng.so:graphics/png 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 From owner-svn-ports-branches@freebsd.org Tue Dec 12 02:51:01 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 AC73FE88B59; Tue, 12 Dec 2017 02:51:01 +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 8627766C55; Tue, 12 Dec 2017 02:51:01 +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 vBC2p0DH095820; Tue, 12 Dec 2017 02:51:00 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC2p0X7095819; Tue, 12 Dec 2017 02:51:00 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712120251.vBC2p0X7095819@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:51:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456083 - branches/2017Q4/dns/packetq X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/dns/packetq X-SVN-Commit-Revision: 456083 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:51:01 -0000 Author: jbeich Date: Tue Dec 12 02:51:00 2017 New Revision: 456083 URL: https://svnweb.freebsd.org/changeset/ports/456083 Log: MFH: r456077 dns/packetq: require C++11 toolchain (on powerpc*, mips*, sparc*) cc1plus: error: unrecognized command line option "-std=c++0x" In file included from dns.cpp:22: In file included from ./dns.h:31: In file included from ./packet_handler.h:33: In file included from ./sql.h:43: ./variant.h:297:34: error: expected '(' for function-style cast or type construction return std::hash()(m_val.m_bool); ~~~~^ ./variant.h:297:20: error: no member named 'hash' in namespace 'std'; did you mean simply 'hash'? return std::hash()(m_val.m_bool); ^~~~~~~~~ hash ./variant.h:293:17: note: 'hash' declared here std::size_t hash() const ^ ./variant.h:297:36: error: expected expression return std::hash()(m_val.m_bool); ^ ./variant.h:299:33: error: expected '(' for function-style cast or type construction return std::hash()(m_val.m_int); ~~~^ ./variant.h:299:20: error: no member named 'hash' in namespace 'std'; did you mean simply 'hash'? return std::hash()(m_val.m_int); ^~~~~~~~~ hash ./variant.h:293:17: note: 'hash' declared here std::size_t hash() const ^ ./variant.h:299:35: error: expected expression return std::hash()(m_val.m_int); ^ ./variant.h:301:35: error: expected '(' for function-style cast or type construction return std::hash()(m_val.m_float); ~~~~~^ ./variant.h:301:20: error: no member named 'hash' in namespace 'std'; did you mean simply 'hash'? return std::hash()(m_val.m_float); ^~~~~~~~~ hash ./variant.h:293:17: note: 'hash' declared here std::size_t hash() const ^ ./variant.h:301:37: error: expected expression return std::hash()(m_val.m_float); ^ In file included from dns.cpp:22: In file included from ./dns.h:31: In file included from ./packet_handler.h:33: ./sql.h:1766:8: error: explicit specialization of non-template struct 'hash' struct hash > { ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 10 errors generated. Reported by: pkg-fallout (mips64) Approved by: ports-secteam blanket Modified: branches/2017Q4/dns/packetq/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/dns/packetq/Makefile ============================================================================== --- branches/2017Q4/dns/packetq/Makefile Tue Dec 12 02:49:56 2017 (r456082) +++ branches/2017Q4/dns/packetq/Makefile Tue Dec 12 02:51:00 2017 (r456083) @@ -16,7 +16,7 @@ GH_ACCOUNT= DNS-OARC GH_PROJECT= PacketQ USE_GITHUB= yes -USES= autoreconf +USES= autoreconf compiler:c++11-lib GNU_CONFIGURE= yes OPTIONS_DEFINE= DOCS From owner-svn-ports-branches@freebsd.org Tue Dec 12 02:55:34 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 53948E88E2B; Tue, 12 Dec 2017 02:55:34 +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 203CF6725B; Tue, 12 Dec 2017 02:55:34 +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 vBC2tXlh099156; Tue, 12 Dec 2017 02:55:33 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC2tXu5099155; Tue, 12 Dec 2017 02:55:33 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712120255.vBC2tXu5099155@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:55:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456085 - branches/2017Q4/net/ns3 X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/net/ns3 X-SVN-Commit-Revision: 456085 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:55:34 -0000 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' (aka 'vector') std::vector 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} From owner-svn-ports-branches@freebsd.org Tue Dec 12 03:01:24 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 8AFE8E891C7; Tue, 12 Dec 2017 03:01:24 +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 53D266793D; Tue, 12 Dec 2017 03:01:24 +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 vBC31No1001378; Tue, 12 Dec 2017 03:01:23 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC31NgP001377; Tue, 12 Dec 2017 03:01:23 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712120301.vBC31NgP001377@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 03:01:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456087 - branches/2017Q4/textproc/ansifilter X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/textproc/ansifilter X-SVN-Commit-Revision: 456087 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 03:01:24 -0000 Author: jbeich Date: Tue Dec 12 03:01:23 2017 New Revision: 456087 URL: https://svnweb.freebsd.org/changeset/ports/456087 Log: MFH: r456086 textproc/ansifilter: require C++11 toolchain (on powerpc*, mips*, sparc*) cc1plus: error: unrecognized command line option "-std=c++11" main.cpp:118:5: error: use of undeclared identifier 'unique_ptr' unique_ptr generator(ansifilter::CodeGenerator::getInstance(op... ^ Reported by: pkg-fallout (mips64) Approved by: ports-secteam blanket Modified: branches/2017Q4/textproc/ansifilter/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/textproc/ansifilter/Makefile ============================================================================== --- branches/2017Q4/textproc/ansifilter/Makefile Tue Dec 12 02:57:13 2017 (r456086) +++ branches/2017Q4/textproc/ansifilter/Makefile Tue Dec 12 03:01:23 2017 (r456087) @@ -12,9 +12,7 @@ COMMENT= Customizable ANSI Code Converter LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= fails to compile: cc1plus: error: unrecognized command line option -std=c++11 - -USES= gmake tar:bzip2 +USES= compiler:c++11-lib gmake tar:bzip2 MAKEFILE= makefile PORTDOCS= ChangeLog README From owner-svn-ports-branches@freebsd.org Tue Dec 12 03:04:13 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 C8943E897A3; Tue, 12 Dec 2017 03:04:13 +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 8DE1668030; Tue, 12 Dec 2017 03:04:13 +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 vBC34CBu004865; Tue, 12 Dec 2017 03:04:12 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC34CKd004864; Tue, 12 Dec 2017 03:04:12 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712120304.vBC34CKd004864@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 03:04:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456090 - branches/2017Q4/devel/spdlog X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/devel/spdlog X-SVN-Commit-Revision: 456090 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 03:04:13 -0000 Author: jbeich Date: Tue Dec 12 03:04:12 2017 New Revision: 456090 URL: https://svnweb.freebsd.org/changeset/ports/456090 Log: MFH: r456088 devel/spdlog: require C++11 toolchain (on powerpc*, mips*, sparc*) CMake Error in tests/CMakeLists.txt: Target "catch_tests" requires the language dialect "CXX11" (with compiler extensions), but CMake does not know the compile flags to use to enable it. tests/includes.h:7:10: fatal error: 'chrono' file not found #include ^~~~~~~~ 1 error generated. Reported by: pkg-fallout (mips64) Approved by: ports-secteam blanket Modified: branches/2017Q4/devel/spdlog/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/devel/spdlog/Makefile ============================================================================== --- branches/2017Q4/devel/spdlog/Makefile Tue Dec 12 03:02:52 2017 (r456089) +++ branches/2017Q4/devel/spdlog/Makefile Tue Dec 12 03:04:12 2017 (r456090) @@ -12,11 +12,9 @@ COMMENT= Super fast C++ logging library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= fails to compile: includes.h: error: chrono: No such file or directory - USE_GITHUB= yes GH_ACCOUNT= gabime -USES= cmake dos2unix pathfix +USES= cmake compiler:c++11-lib dos2unix pathfix .include From owner-svn-ports-branches@freebsd.org Tue Dec 12 03:29:13 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 C2DBFE8A4A4; Tue, 12 Dec 2017 03:29:13 +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 8E4D3690B6; Tue, 12 Dec 2017 03:29:13 +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 vBC3TCgL013938; Tue, 12 Dec 2017 03:29:12 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC3TCCZ013937; Tue, 12 Dec 2017 03:29:12 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712120329.vBC3TCCZ013937@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 03:29:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456095 - branches/2017Q4/net/nethogs X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/net/nethogs X-SVN-Commit-Revision: 456095 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 03:29:13 -0000 Author: jbeich Date: Tue Dec 12 03:29:12 2017 New Revision: 456095 URL: https://svnweb.freebsd.org/changeset/ports/456095 Log: MFH: r456094 net/nethogs: unbreak with GCC < 6 inode2prog.cpp: In function 'std::string getprogname(pid_t)': inode2prog.cpp:123: error: 'snprintf' is not a member of 'std' Reported by: pkg-fallout (mips64) Approved by: ports-secteam blanket Modified: branches/2017Q4/net/nethogs/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/net/nethogs/Makefile ============================================================================== --- branches/2017Q4/net/nethogs/Makefile Tue Dec 12 03:27:03 2017 (r456094) +++ branches/2017Q4/net/nethogs/Makefile Tue Dec 12 03:29:12 2017 (r456095) @@ -12,12 +12,11 @@ COMMENT= Small net top tool LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= fails to compile: inode2prog.cpp: snprintf is not a member of std - USE_GITHUB= yes GH_ACCOUNT= raboof USES= gmake shebangfix +CXXFLAGS+= -D_GLIBCXX_USE_C99 # XXX ports/193528 SHEBANG_FILES= determineVersion.sh bash_CMD= /bin/sh From owner-svn-ports-branches@freebsd.org Tue Dec 12 03:41:23 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 7472CE8AB33; Tue, 12 Dec 2017 03:41:23 +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 409C1698C5; Tue, 12 Dec 2017 03:41:23 +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 vBC3fMpg019074; Tue, 12 Dec 2017 03:41:22 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC3fMtP019073; Tue, 12 Dec 2017 03:41:22 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712120341.vBC3fMtP019073@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 03:41:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456097 - branches/2017Q4/biology/seqtools X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/biology/seqtools X-SVN-Commit-Revision: 456097 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 03:41:23 -0000 Author: jbeich Date: Tue Dec 12 03:41:22 2017 New Revision: 456097 URL: https://svnweb.freebsd.org/changeset/ports/456097 Log: MFH: r456096 biology/seqtools: re-try on powerpc* after r449590 Approved by: ports-secteam blanket Modified: branches/2017Q4/biology/seqtools/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/biology/seqtools/Makefile ============================================================================== --- branches/2017Q4/biology/seqtools/Makefile Tue Dec 12 03:38:56 2017 (r456096) +++ branches/2017Q4/biology/seqtools/Makefile Tue Dec 12 03:41:22 2017 (r456097) @@ -16,8 +16,6 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 -BROKEN_powerpc64= fails to compile: jsoncpp.cpp: 'snprintf' is not a member of 'std' - USES= compiler:c++14-lang gettext libtool pkgconfig GNU_CONFIGURE= yes USE_GNOME= cairo gdkpixbuf2 gtk20 From owner-svn-ports-branches@freebsd.org Tue Dec 12 03:47:18 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 5CC26E8AD75; Tue, 12 Dec 2017 03:47:18 +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 2799269C9A; Tue, 12 Dec 2017 03:47:18 +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 vBC3lHMr022616; Tue, 12 Dec 2017 03:47:17 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC3lHIe022615; Tue, 12 Dec 2017 03:47:17 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712120347.vBC3lHIe022615@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 03:47:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456099 - branches/2017Q4/graphics/simpleviewer X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/graphics/simpleviewer X-SVN-Commit-Revision: 456099 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 03:47:18 -0000 Author: jbeich Date: Tue Dec 12 03:47:17 2017 New Revision: 456099 URL: https://svnweb.freebsd.org/changeset/ports/456099 Log: MFH: r456098 graphics/simpleviewer: re-try on powerpc* after r449590 Approved by: ports-secteam blanket Modified: branches/2017Q4/graphics/simpleviewer/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/graphics/simpleviewer/Makefile ============================================================================== --- branches/2017Q4/graphics/simpleviewer/Makefile Tue Dec 12 03:45:49 2017 (r456098) +++ branches/2017Q4/graphics/simpleviewer/Makefile Tue Dec 12 03:47:17 2017 (r456099) @@ -25,8 +25,6 @@ LIB_DEPENDS= libIlmImf.so:graphics/OpenEXR \ libtiff.so:graphics/tiff \ libwebp.so:graphics/webp -BROKEN_powerpc64= fails to build: fileslist.cpp: '::printf' has not been declared - USES= cmake compiler:c++11-lang jpeg pkgconfig tar:bzip2 USE_GL= glu USE_XORG= ice sm x11 xcursor xext xinerama xrandr xxf86vm From owner-svn-ports-branches@freebsd.org Tue Dec 12 03:52:37 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 44436E8B05F; Tue, 12 Dec 2017 03:52:37 +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 110F86A1B4; Tue, 12 Dec 2017 03:52:36 +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 vBC3qa1A027011; Tue, 12 Dec 2017 03:52:36 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC3qag1027010; Tue, 12 Dec 2017 03:52:36 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712120352.vBC3qag1027010@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 03:52:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456101 - branches/2017Q4/emulators/stella X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/emulators/stella X-SVN-Commit-Revision: 456101 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 03:52:37 -0000 Author: jbeich Date: Tue Dec 12 03:52:35 2017 New Revision: 456101 URL: https://svnweb.freebsd.org/changeset/ports/456101 Log: MFH: r456100 emulators/stella: re-try on powerpc* after r449590 Approved by: ports-secteam blanket Modified: branches/2017Q4/emulators/stella/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/emulators/stella/Makefile ============================================================================== --- branches/2017Q4/emulators/stella/Makefile Tue Dec 12 03:49:04 2017 (r456100) +++ branches/2017Q4/emulators/stella/Makefile Tue Dec 12 03:52:35 2017 (r456101) @@ -16,8 +16,6 @@ LICENSE_FILE= ${WRKSRC}/License.txt LIB_DEPENDS= libpng.so:graphics/png -BROKEN_powerpc64= fails to compile: CartDebug.cxx: 'snprintf' is not a member of 'std' - WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_SDL= sdl2 From owner-svn-ports-branches@freebsd.org Tue Dec 12 04:21:40 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 B234EE8CA24; Tue, 12 Dec 2017 04:21:40 +0000 (UTC) (envelope-from bjk@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 55A186B28C; Tue, 12 Dec 2017 04:21:40 +0000 (UTC) (envelope-from bjk@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBC4Ldj9036761; Tue, 12 Dec 2017 04:21:39 GMT (envelope-from bjk@FreeBSD.org) Received: (from bjk@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC4LcLA036750; Tue, 12 Dec 2017 04:21:38 GMT (envelope-from bjk@FreeBSD.org) Message-Id: <201712120421.vBC4LcLA036750@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bjk set sender to bjk@FreeBSD.org using -f From: Benjamin Kaduk Date: Tue, 12 Dec 2017 04:21:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456102 - in branches/2017Q4/net/openafs: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: bjk X-SVN-Commit-Paths: in branches/2017Q4/net/openafs: . files X-SVN-Commit-Revision: 456102 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 04:21:40 -0000 Author: bjk (doc committer) Date: Tue Dec 12 04:21:38 2017 New Revision: 456102 URL: https://svnweb.freebsd.org/changeset/ports/456102 Log: MFH: r455921 Update to upstream security release 1.6.22 Also bring in rudimentary support for 11.1; 12.0 doesn't quite work yet due to the ROOTINO-->UFS_ROOTINO rename. Approved by: eadler (ports committer) Security: CVE-2017-17432 Approved by: ports-secteam (delphij) Added: branches/2017Q4/net/openafs/files/patch-src_config_param.amd64__fbsd__111.h - copied unchanged from r455921, head/net/openafs/files/patch-src_config_param.amd64__fbsd__111.h branches/2017Q4/net/openafs/files/patch-src_config_param.amd64__fbsd__120.h - copied unchanged from r455921, head/net/openafs/files/patch-src_config_param.amd64__fbsd__120.h branches/2017Q4/net/openafs/files/patch-src_config_param.i386__fbsd__111.h - copied unchanged from r455921, head/net/openafs/files/patch-src_config_param.i386__fbsd__111.h branches/2017Q4/net/openafs/files/patch-src_config_param.i386__fbsd__120.h - copied unchanged from r455921, head/net/openafs/files/patch-src_config_param.i386__fbsd__120.h Modified: branches/2017Q4/net/openafs/Makefile branches/2017Q4/net/openafs/distinfo branches/2017Q4/net/openafs/files/patch-configure branches/2017Q4/net/openafs/files/patch-doc-man-pages-Makefile.in branches/2017Q4/net/openafs/files/patch-src-packaging-FreeBSD-Makefile.man branches/2017Q4/net/openafs/files/patch-src-rx-rx_kernel.h branches/2017Q4/net/openafs/files/patch-src__kauth__Makefile.in Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/net/openafs/Makefile ============================================================================== --- branches/2017Q4/net/openafs/Makefile Tue Dec 12 03:52:35 2017 (r456101) +++ branches/2017Q4/net/openafs/Makefile Tue Dec 12 04:21:38 2017 (r456102) @@ -21,9 +21,10 @@ LICENSE_NAME= IBM Public License Version 1.0 LICENSE_FILE= ${WRKSRC}/doc/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BROKEN_FreeBSD_12= does not build (don't know how to make ./param.amd64_fbsd_120.h. Stop) +BROKEN_FreeBSD_12= does not build (use of undeclared identifier 'ROOTINO') +ONLY_FOR_ARCHS= i386 amd64 -AFS_DISTVERSION= 1.6.20.1 +AFS_DISTVERSION= 1.6.22 DBVERSION= 2016-01-01 USES= cpe kmod tar:bzip2 @@ -49,7 +50,6 @@ USE_RC_SUBR= afsserver CPE_VERSION= ${AFS_DISTVERSION} CONFLICTS= coda-server-6.[0-9]* heimdal-[0-9]* -ONLY_FOR_ARCHS= i386 amd64 MAKE_JOBS_UNSAFE= yes @@ -79,7 +79,7 @@ FUSE_CONFIGURE_OFF= --disable-fuse-client CFLAGS+= -mstackrealign .endif -.if ${OSREL} == "11.0" || ${OSREL} == "12.0" +.if ${OSREL} == "11.0" || ${OSREL} == "11.1" || ${OSREL} == "12.0" # Upstream does not support the client on 11 and newer CONFIGURE_ARGS += --disable-kernel-module PLIST_SUB+= KMOD="@comment " Modified: branches/2017Q4/net/openafs/distinfo ============================================================================== --- branches/2017Q4/net/openafs/distinfo Tue Dec 12 03:52:35 2017 (r456101) +++ branches/2017Q4/net/openafs/distinfo Tue Dec 12 04:21:38 2017 (r456102) @@ -1,7 +1,7 @@ -TIMESTAMP = 1487798814 -SHA256 (openafs-1.6.20.1-src.tar.bz2) = dc869eecf6c81949d3dd2021eaf87118ef9b90ec5012a35f64836a02a58a8826 -SIZE (openafs-1.6.20.1-src.tar.bz2) = 14672548 -SHA256 (openafs-1.6.20.1-doc.tar.bz2) = 2c4bf6f53030e8a9cf3460d9c9292bcdbfea356930ed1d436506e8dc60db0f1c -SIZE (openafs-1.6.20.1-doc.tar.bz2) = 3533007 +TIMESTAMP = 1512851739 +SHA256 (openafs-1.6.22-src.tar.bz2) = 835410b75d14aec1ac6a1138d8194897f1badeffa3a0c282963ad51996712347 +SIZE (openafs-1.6.22-src.tar.bz2) = 14606745 +SHA256 (openafs-1.6.22-doc.tar.bz2) = 0e177e007ea802891d23bcecd5a836f7c768e9af0d70aab4259233cd2d474a0f +SIZE (openafs-1.6.22-doc.tar.bz2) = 3567926 SHA256 (CellServDB.2016-01-01) = ef37a1cc73c90619e9b6a0ab0fa8602c57c9da8ae5e65aab96cb17e2bc1bf70e SIZE (CellServDB.2016-01-01) = 37058 Modified: branches/2017Q4/net/openafs/files/patch-configure ============================================================================== --- branches/2017Q4/net/openafs/files/patch-configure Tue Dec 12 03:52:35 2017 (r456101) +++ branches/2017Q4/net/openafs/files/patch-configure Tue Dec 12 04:21:38 2017 (r456102) @@ -1,6 +1,6 @@ ---- configure.orig 2016-12-15 13:48:00 UTC +--- configure.orig 2017-12-05 15:02:11 UTC +++ configure -@@ -34144,13 +34144,15 @@ case $AFS_SYSNAME in +@@ -25273,13 +25273,15 @@ case $AFS_SYSNAME in ;; i386_fbsd_*) @@ -20,7 +20,7 @@ ;; i386_dfbsd_*) -@@ -34164,12 +34166,15 @@ case $AFS_SYSNAME in +@@ -25293,12 +25295,15 @@ case $AFS_SYSNAME in ;; amd64_fbsd_*) Modified: branches/2017Q4/net/openafs/files/patch-doc-man-pages-Makefile.in ============================================================================== --- branches/2017Q4/net/openafs/files/patch-doc-man-pages-Makefile.in Tue Dec 12 03:52:35 2017 (r456101) +++ branches/2017Q4/net/openafs/files/patch-doc-man-pages-Makefile.in Tue Dec 12 04:21:38 2017 (r456102) @@ -1,4 +1,4 @@ ---- doc/man-pages/Makefile.in.orig 2016-12-14 18:28:29 UTC +--- doc/man-pages/Makefile.in.orig 2017-12-05 14:52:48 UTC +++ doc/man-pages/Makefile.in @@ -2,6 +2,7 @@ Modified: branches/2017Q4/net/openafs/files/patch-src-packaging-FreeBSD-Makefile.man ============================================================================== --- branches/2017Q4/net/openafs/files/patch-src-packaging-FreeBSD-Makefile.man Tue Dec 12 03:52:35 2017 (r456101) +++ branches/2017Q4/net/openafs/files/patch-src-packaging-FreeBSD-Makefile.man Tue Dec 12 04:21:38 2017 (r456102) @@ -1,4 +1,4 @@ ---- src/packaging/FreeBSD/Makefile.man.orig 2016-12-14 18:28:29 UTC +--- src/packaging/FreeBSD/Makefile.man.orig 2017-12-05 14:52:48 UTC +++ src/packaging/FreeBSD/Makefile.man @@ -7,6 +7,7 @@ MAN1+= copyauth.1 MAN1+= dlog.1 Modified: branches/2017Q4/net/openafs/files/patch-src-rx-rx_kernel.h ============================================================================== --- branches/2017Q4/net/openafs/files/patch-src-rx-rx_kernel.h Tue Dec 12 03:52:35 2017 (r456101) +++ branches/2017Q4/net/openafs/files/patch-src-rx-rx_kernel.h Tue Dec 12 04:21:38 2017 (r456102) @@ -1,6 +1,6 @@ ---- src/rx/rx_kernel.h.orig 2016-12-14 18:28:29 UTC +--- src/rx/rx_kernel.h.orig 2017-12-05 14:52:48 UTC +++ src/rx/rx_kernel.h -@@ -58,12 +58,20 @@ extern int osi_utoa(char *buf, size_t le +@@ -58,12 +58,20 @@ extern int osi_utoa(char *buf, size_t len, unsigned lo #endif #define rx_ifnet_mtu(x) (x)->if_mtu #define rx_ifnet_flags(x) (x?(x)->if_flags:0) Modified: branches/2017Q4/net/openafs/files/patch-src__kauth__Makefile.in ============================================================================== --- branches/2017Q4/net/openafs/files/patch-src__kauth__Makefile.in Tue Dec 12 03:52:35 2017 (r456101) +++ branches/2017Q4/net/openafs/files/patch-src__kauth__Makefile.in Tue Dec 12 04:21:38 2017 (r456102) @@ -1,4 +1,4 @@ ---- src/kauth/Makefile.in.orig 2016-12-14 18:28:29 UTC +--- src/kauth/Makefile.in.orig 2017-12-05 14:52:48 UTC +++ src/kauth/Makefile.in @@ -12,6 +12,8 @@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ Copied: branches/2017Q4/net/openafs/files/patch-src_config_param.amd64__fbsd__111.h (from r455921, head/net/openafs/files/patch-src_config_param.amd64__fbsd__111.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q4/net/openafs/files/patch-src_config_param.amd64__fbsd__111.h Tue Dec 12 04:21:38 2017 (r456102, copy of r455921, head/net/openafs/files/patch-src_config_param.amd64__fbsd__111.h) @@ -0,0 +1,225 @@ +--- /dev/null ++++ src/config/param.amd64_fbsd_111.h +@@ -0,0 +1,222 @@ ++#ifndef AFS_PARAM_H ++#define AFS_PARAM_H ++ ++/* Machine / Operating system information */ ++/* XXX temporarily use old sysname until new one is assigned */ ++#define SYS_NAME "amd64_fbsd_110" ++#define SYS_NAME_ID SYS_NAME_ID_amd64_fbsd_110 ++ ++#define AFSLITTLE_ENDIAN 1 ++#define AFS_HAVE_FFS 1 /* Use system's ffs. */ ++#define AFS_HAVE_STATVFS 1 /* System doesn't support statvfs */ ++#define AFS_VM_RDWR_ENV 1 /* read/write implemented via VM */ ++ ++ ++#ifndef UKERNEL ++/* This section for kernel libafs compiles only */ ++ ++#ifndef IGNORE_STDS_H ++#include ++#endif ++ ++#define AFS_XBSD_ENV 1 /* {Free,Open,Net}BSD */ ++#define AFS_X86_XBSD_ENV 1 ++ ++#define AFS_NAMEI_ENV 1 /* User space interface to file system */ ++#define AFS_64BIT_ENV 1 ++#define AFS_64BIT_CLIENT 1 ++#define AFS_64BITPOINTER_ENV 1 ++#define AFS_64BITUSERPOINTER_ENV 1 ++#define AFS_64BIT_IOPS_ENV 1 /* Needed for NAMEI */ ++#define AFS_FBSD_ENV 1 ++#define AFS_FBSD50_ENV 1 ++#define AFS_FBSD51_ENV 1 ++#define AFS_FBSD52_ENV 1 ++#define AFS_FBSD53_ENV 1 ++#define AFS_FBSD60_ENV 1 ++#define AFS_FBSD61_ENV 1 ++#define AFS_FBSD62_ENV 1 ++#define AFS_FBSD70_ENV 1 ++#define AFS_FBSD71_ENV 1 ++#define AFS_FBSD80_ENV 1 ++#define AFS_FBSD81_ENV 1 ++#define AFS_FBSD90_ENV 1 ++#define AFS_FBSD91_ENV 1 ++#define AFS_FBSD100_ENV 1 ++#define AFS_FBSD110_ENV 1 ++#define AFS_FBSD111_ENV 1 ++#define AFS_X86_FBSD_ENV 1 ++#define AFS_X86_FBSD50_ENV 1 ++#define AFS_X86_FBSD60_ENV 1 /* added at 70--ie, some changes should port <-- */ ++#define AFS_X86_FBSD62_ENV 1 ++#define AFS_X86_FBSD70_ENV 1 ++#define AFS_X86_FBSD71_ENV 1 ++#define AFS_X86_FBSD80_ENV 1 ++#define AFS_X86_FBSD81_ENV 1 ++#define AFS_X86_FBSD90_ENV 1 ++#define AFS_X86_FBSD91_ENV 1 ++#define AFS_X86_FBSD100_ENV 1 ++#define AFS_X86_FBSD110_ENV 1 ++#define AFS_X86_FBSD111_ENV 1 ++#define AFS_X86_ENV 1 ++#undef AFS_NONFSTRANS ++#define AFS_NONFSTRANS 1 ++#define FTRUNC O_TRUNC ++ ++#define IUPD 0x0010 ++#define IACC 0x0020 ++#define ICHG 0x0040 ++#define IMOD 0x0080 ++ ++#define IN_LOCK(ip) lockmgr(&ip->i_lock, LK_EXCLUSIVE, \ ++ NULL, curproc) ++#define IN_UNLOCK(ip) lockmgr(&ip->i_lock, LK_RELEASE, \ ++ NULL, curproc) ++ ++#include ++ ++#define AFS_VFS_ENV 1 ++#define AFS_VFSINCL_ENV 1 ++#define AFS_GREEDY43_ENV 1 ++#define AFS_ENV 1 ++ ++#define AFS_SYSCALL 339 ++#define AFS_MOUNT_AFS "afs" ++ ++#ifndef MOUNT_UFS ++#define MOUNT_UFS "ufs" ++#endif ++ ++#ifndef MOUNT_AFS ++#define MOUNT_AFS AFS_MOUNT_AFS ++#endif ++ ++#define RXK_LISTENER_ENV 1 ++#define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */ ++#define AFS_USE_GETTIMEOFDAY 1 /* use gettimeofday to implement rx clock */ ++ ++/* Extra kernel definitions (from kdefs file) */ ++#ifdef _KERNEL ++#define AFS_GLOBAL_SUNLOCK 1 ++#define AFS_VFS34 1 /* What is VFS34??? */ ++#define AFS_SHORTGID 0 /* are group id's short? */ ++#define afsio_iov uio_iov ++#define afsio_iovcnt uio_iovcnt ++#define afsio_offset uio_offset ++#define afsio_seg uio_segflg ++#define afsio_resid uio_resid ++#define AFS_UIOSYS UIO_SYSSPACE ++#define AFS_UIOUSER UIO_USERSPACE ++#define AFS_CLBYTES CLBYTES ++#define osi_GetTime(x) microtime(x) ++#define AFS_KALLOC(x) osi_fbsd_alloc((x), 1) ++#undef AFS_KALLOC_NOSLEEP ++#define AFS_KALLOC_NOSLEEP(x) osi_fbsd_alloc((x), 0) ++#define AFS_KFREE(x,y) osi_fbsd_free((x)) ++#define v_count v_usecount ++#define v_vfsp v_mount ++#define vfs_bsize mnt_stat.f_bsize ++#define vfs_fsid mnt_stat.f_fsid ++#define va_nodeid va_fileid ++#define vfs_vnodecovered mnt_vnodecovered ++#define direct dirent ++#define vnode_t struct vnode ++ ++#ifndef MUTEX_DEFAULT ++#define MUTEX_DEFAULT 0 ++#endif /* MUTEX_DEFAULT */ ++ ++#ifndef SSYS ++#define SSYS 0x00002 ++#endif /* SSYS */ ++ ++#define p_rcred p_ucred ++ ++#if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) ++enum vcexcl { NONEXCL, EXCL }; ++ ++#ifdef KERNEL ++#ifndef MIN ++#define MIN(A,B) ((A) < (B) ? (A) : (B)) ++#endif ++#ifndef MAX ++#define MAX(A,B) ((A) > (B) ? (A) : (B)) ++#endif ++#endif /* KERNEL */ ++ ++#endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */ ++#endif /* _KERNEL */ ++ ++#else /* !defined(UKERNEL) */ ++ ++/* This section for user space compiles only */ ++ ++#define UKERNEL 1 /* user space kernel */ ++#define AFS_ENV 1 ++#define AFS_VFSINCL_ENV 1 ++#define AFS_USR_FBSD50_ENV 1 ++#define AFS_USR_FBSD51_ENV 1 ++#define AFS_USR_FBSD52_ENV 1 ++#define AFS_USR_FBSD53_ENV 1 ++#define AFS_USR_FBSD60_ENV 1 ++#define AFS_USR_FBSD61_ENV 1 ++#define AFS_USR_FBSD70_ENV 1 ++#define AFS_USR_FBSD71_ENV 1 ++#define AFS_USR_FBSD80_ENV 1 ++#define AFS_USR_FBSD81_ENV 1 ++#define AFS_USR_FBSD90_ENV 1 ++#define AFS_USR_FBSD91_ENV 1 ++#define AFS_USR_FBSD100_ENV 1 ++#define AFS_USR_FBSD110_ENV 1 ++#define AFS_USR_FBSD111_ENV 1 ++#define AFS_USR_FBSD_ENV 1 ++#undef AFS_NONFSTRANS ++#define AFS_NONFSTRANS 1 ++ ++#define AFS_MOUNT_AFS "afs" /* The name of the filesystem type. */ ++#define AFS_SYSCALL 339 ++#define AFS_NAMEI_ENV 1 /* User space interface to file system */ ++#define AFS_64BIT_ENV 1 ++#define AFS_64BITPOINTER_ENV 1 ++#define AFS_64BIT_IOPS_ENV 1 /* Needed for NAMEI */ ++#define AFS_USERSPACE_IP_ADDR 1 ++#define RXK_LISTENER_ENV 1 ++#define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */ ++ ++#include ++ ++#define afsio_iov uio_iov ++#define afsio_iovcnt uio_iovcnt ++#define afsio_offset uio_offset ++#define afsio_seg uio_segflg ++#define afsio_fmode uio_fmode ++#define afsio_resid uio_resid ++#define AFS_UIOSYS 1 ++#define AFS_UIOUSER UIO_USERSPACE ++#define AFS_CLBYTES MCLBYTES ++#define AFS_MINCHANGE 2 ++#define VATTR_NULL usr_vattr_null ++ ++#define AFS_DIRENT ++#ifndef CMSERVERPREF ++#define CMSERVERPREF ++#endif ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#endif /* !defined(UKERNEL) */ ++ ++/* general user-space compiles */ ++ ++#if defined(UKERNEL) || !defined(KERNEL) ++#define STDLIB_HAS_MALLOC_PROTOS 1 ++#endif ++ ++#endif /* AFS_PARAM_H */ Copied: branches/2017Q4/net/openafs/files/patch-src_config_param.amd64__fbsd__120.h (from r455921, head/net/openafs/files/patch-src_config_param.amd64__fbsd__120.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q4/net/openafs/files/patch-src_config_param.amd64__fbsd__120.h Tue Dec 12 04:21:38 2017 (r456102, copy of r455921, head/net/openafs/files/patch-src_config_param.amd64__fbsd__120.h) @@ -0,0 +1,228 @@ +--- /dev/null ++++ src/config/param.amd64_fbsd_120.h +@@ -0,0 +1,225 @@ ++#ifndef AFS_PARAM_H ++#define AFS_PARAM_H ++ ++/* Machine / Operating system information */ ++/* XXX temporarily use old sysname until new one is assigned */ ++#define SYS_NAME "amd64_fbsd_110" ++#define SYS_NAME_ID SYS_NAME_ID_amd64_fbsd_110 ++ ++#define AFSLITTLE_ENDIAN 1 ++#define AFS_HAVE_FFS 1 /* Use system's ffs. */ ++#define AFS_HAVE_STATVFS 1 /* System doesn't support statvfs */ ++#define AFS_VM_RDWR_ENV 1 /* read/write implemented via VM */ ++ ++ ++#ifndef UKERNEL ++/* This section for kernel libafs compiles only */ ++ ++#ifndef IGNORE_STDS_H ++#include ++#endif ++ ++#define AFS_XBSD_ENV 1 /* {Free,Open,Net}BSD */ ++#define AFS_X86_XBSD_ENV 1 ++ ++#define AFS_NAMEI_ENV 1 /* User space interface to file system */ ++#define AFS_64BIT_ENV 1 ++#define AFS_64BIT_CLIENT 1 ++#define AFS_64BITPOINTER_ENV 1 ++#define AFS_64BITUSERPOINTER_ENV 1 ++#define AFS_64BIT_IOPS_ENV 1 /* Needed for NAMEI */ ++#define AFS_FBSD_ENV 1 ++#define AFS_FBSD50_ENV 1 ++#define AFS_FBSD51_ENV 1 ++#define AFS_FBSD52_ENV 1 ++#define AFS_FBSD53_ENV 1 ++#define AFS_FBSD60_ENV 1 ++#define AFS_FBSD61_ENV 1 ++#define AFS_FBSD62_ENV 1 ++#define AFS_FBSD70_ENV 1 ++#define AFS_FBSD71_ENV 1 ++#define AFS_FBSD80_ENV 1 ++#define AFS_FBSD81_ENV 1 ++#define AFS_FBSD90_ENV 1 ++#define AFS_FBSD91_ENV 1 ++#define AFS_FBSD100_ENV 1 ++#define AFS_FBSD110_ENV 1 ++#define AFS_FBSD111_ENV 1 ++#define AFS_FBSD120_ENV 1 ++#define AFS_X86_FBSD_ENV 1 ++#define AFS_X86_FBSD50_ENV 1 ++#define AFS_X86_FBSD60_ENV 1 /* added at 70--ie, some changes should port <-- */ ++#define AFS_X86_FBSD62_ENV 1 ++#define AFS_X86_FBSD70_ENV 1 ++#define AFS_X86_FBSD71_ENV 1 ++#define AFS_X86_FBSD80_ENV 1 ++#define AFS_X86_FBSD81_ENV 1 ++#define AFS_X86_FBSD90_ENV 1 ++#define AFS_X86_FBSD91_ENV 1 ++#define AFS_X86_FBSD100_ENV 1 ++#define AFS_X86_FBSD110_ENV 1 ++#define AFS_X86_FBSD111_ENV 1 ++#define AFS_X86_FBSD120_ENV 1 ++#define AFS_X86_ENV 1 ++#undef AFS_NONFSTRANS ++#define AFS_NONFSTRANS 1 ++#define FTRUNC O_TRUNC ++ ++#define IUPD 0x0010 ++#define IACC 0x0020 ++#define ICHG 0x0040 ++#define IMOD 0x0080 ++ ++#define IN_LOCK(ip) lockmgr(&ip->i_lock, LK_EXCLUSIVE, \ ++ NULL, curproc) ++#define IN_UNLOCK(ip) lockmgr(&ip->i_lock, LK_RELEASE, \ ++ NULL, curproc) ++ ++#include ++ ++#define AFS_VFS_ENV 1 ++#define AFS_VFSINCL_ENV 1 ++#define AFS_GREEDY43_ENV 1 ++#define AFS_ENV 1 ++ ++#define AFS_SYSCALL 339 ++#define AFS_MOUNT_AFS "afs" ++ ++#ifndef MOUNT_UFS ++#define MOUNT_UFS "ufs" ++#endif ++ ++#ifndef MOUNT_AFS ++#define MOUNT_AFS AFS_MOUNT_AFS ++#endif ++ ++#define RXK_LISTENER_ENV 1 ++#define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */ ++#define AFS_USE_GETTIMEOFDAY 1 /* use gettimeofday to implement rx clock */ ++ ++/* Extra kernel definitions (from kdefs file) */ ++#ifdef _KERNEL ++#define AFS_GLOBAL_SUNLOCK 1 ++#define AFS_VFS34 1 /* What is VFS34??? */ ++#define AFS_SHORTGID 0 /* are group id's short? */ ++#define afsio_iov uio_iov ++#define afsio_iovcnt uio_iovcnt ++#define afsio_offset uio_offset ++#define afsio_seg uio_segflg ++#define afsio_resid uio_resid ++#define AFS_UIOSYS UIO_SYSSPACE ++#define AFS_UIOUSER UIO_USERSPACE ++#define AFS_CLBYTES CLBYTES ++#define osi_GetTime(x) microtime(x) ++#define AFS_KALLOC(x) osi_fbsd_alloc((x), 1) ++#undef AFS_KALLOC_NOSLEEP ++#define AFS_KALLOC_NOSLEEP(x) osi_fbsd_alloc((x), 0) ++#define AFS_KFREE(x,y) osi_fbsd_free((x)) ++#define v_count v_usecount ++#define v_vfsp v_mount ++#define vfs_bsize mnt_stat.f_bsize ++#define vfs_fsid mnt_stat.f_fsid ++#define va_nodeid va_fileid ++#define vfs_vnodecovered mnt_vnodecovered ++#define direct dirent ++#define vnode_t struct vnode ++ ++#ifndef MUTEX_DEFAULT ++#define MUTEX_DEFAULT 0 ++#endif /* MUTEX_DEFAULT */ ++ ++#ifndef SSYS ++#define SSYS 0x00002 ++#endif /* SSYS */ ++ ++#define p_rcred p_ucred ++ ++#if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) ++enum vcexcl { NONEXCL, EXCL }; ++ ++#ifdef KERNEL ++#ifndef MIN ++#define MIN(A,B) ((A) < (B) ? (A) : (B)) ++#endif ++#ifndef MAX ++#define MAX(A,B) ((A) > (B) ? (A) : (B)) ++#endif ++#endif /* KERNEL */ ++ ++#endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */ ++#endif /* _KERNEL */ ++ ++#else /* !defined(UKERNEL) */ ++ ++/* This section for user space compiles only */ ++ ++#define UKERNEL 1 /* user space kernel */ ++#define AFS_ENV 1 ++#define AFS_VFSINCL_ENV 1 ++#define AFS_USR_FBSD50_ENV 1 ++#define AFS_USR_FBSD51_ENV 1 ++#define AFS_USR_FBSD52_ENV 1 ++#define AFS_USR_FBSD53_ENV 1 ++#define AFS_USR_FBSD60_ENV 1 ++#define AFS_USR_FBSD61_ENV 1 ++#define AFS_USR_FBSD70_ENV 1 ++#define AFS_USR_FBSD71_ENV 1 ++#define AFS_USR_FBSD80_ENV 1 ++#define AFS_USR_FBSD81_ENV 1 ++#define AFS_USR_FBSD90_ENV 1 ++#define AFS_USR_FBSD91_ENV 1 ++#define AFS_USR_FBSD100_ENV 1 ++#define AFS_USR_FBSD110_ENV 1 ++#define AFS_USR_FBSD111_ENV 1 ++#define AFS_USR_FBSD120_ENV 1 ++#define AFS_USR_FBSD_ENV 1 ++#undef AFS_NONFSTRANS ++#define AFS_NONFSTRANS 1 ++ ++#define AFS_MOUNT_AFS "afs" /* The name of the filesystem type. */ ++#define AFS_SYSCALL 339 ++#define AFS_NAMEI_ENV 1 /* User space interface to file system */ ++#define AFS_64BIT_ENV 1 ++#define AFS_64BITPOINTER_ENV 1 ++#define AFS_64BIT_IOPS_ENV 1 /* Needed for NAMEI */ ++#define AFS_USERSPACE_IP_ADDR 1 ++#define RXK_LISTENER_ENV 1 ++#define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */ ++ ++#include ++ ++#define afsio_iov uio_iov ++#define afsio_iovcnt uio_iovcnt ++#define afsio_offset uio_offset ++#define afsio_seg uio_segflg ++#define afsio_fmode uio_fmode ++#define afsio_resid uio_resid ++#define AFS_UIOSYS 1 ++#define AFS_UIOUSER UIO_USERSPACE ++#define AFS_CLBYTES MCLBYTES ++#define AFS_MINCHANGE 2 ++#define VATTR_NULL usr_vattr_null ++ ++#define AFS_DIRENT ++#ifndef CMSERVERPREF ++#define CMSERVERPREF ++#endif ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#endif /* !defined(UKERNEL) */ ++ ++/* general user-space compiles */ ++ ++#if defined(UKERNEL) || !defined(KERNEL) ++#define STDLIB_HAS_MALLOC_PROTOS 1 ++#endif ++ ++#endif /* AFS_PARAM_H */ Copied: branches/2017Q4/net/openafs/files/patch-src_config_param.i386__fbsd__111.h (from r455921, head/net/openafs/files/patch-src_config_param.i386__fbsd__111.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q4/net/openafs/files/patch-src_config_param.i386__fbsd__111.h Tue Dec 12 04:21:38 2017 (r456102, copy of r455921, head/net/openafs/files/patch-src_config_param.i386__fbsd__111.h) @@ -0,0 +1,222 @@ +--- /dev/null ++++ src/config/param.i386_fbsd_111.h +@@ -0,0 +1,219 @@ ++#ifndef AFS_PARAM_H ++#define AFS_PARAM_H ++ ++/* Machine / Operating system information */ ++/* XXX temporarilyuse old sysname until new one is assigned ++#define SYS_NAME "i386_fbsd_110" ++#define SYS_NAME_ID SYS_NAME_ID_i386_fbsd_110 ++ ++#define AFSLITTLE_ENDIAN 1 ++#define AFS_HAVE_FFS 1 /* Use system's ffs. */ ++#define AFS_HAVE_STATVFS 1 /* System doesn't support statvfs */ ++#define AFS_VM_RDWR_ENV 1 /* read/write implemented via VM */ ++#define AFS_FAKEOPEN_ENV 1 /* call afs_FakeOpen as if !AFS_VM_RDWR */ ++ ++ ++#ifndef UKERNEL ++/* This section for kernel libafs compiles only */ ++ ++#ifndef IGNORE_STDS_H ++#include ++#endif ++ ++#define AFS_XBSD_ENV 1 /* {Free,Open,Net}BSD */ ++#define AFS_X86_XBSD_ENV 1 ++ ++#define AFS_NAMEI_ENV 1 /* User space interface to file system */ ++#define AFS_64BIT_ENV 1 ++#define AFS_64BIT_CLIENT 1 ++#define AFS_64BIT_IOPS_ENV 1 /* Needed for NAMEI */ ++#define AFS_FBSD_ENV 1 ++#define AFS_FBSD50_ENV 1 ++#define AFS_FBSD51_ENV 1 ++#define AFS_FBSD52_ENV 1 ++#define AFS_FBSD53_ENV 1 ++#define AFS_FBSD60_ENV 1 ++#define AFS_FBSD61_ENV 1 ++#define AFS_FBSD62_ENV 1 ++#define AFS_FBSD70_ENV 1 ++#define AFS_FBSD71_ENV 1 ++#define AFS_FBSD80_ENV 1 ++#define AFS_FBSD81_ENV 1 ++#define AFS_FBSD90_ENV 1 ++#define AFS_FBSD91_ENV 1 ++#define AFS_FBSD100_ENV 1 ++#define AFS_FBSD110_ENV 1 ++#define AFS_X86_FBSD_ENV 1 ++#define AFS_X86_FBSD50_ENV 1 ++#define AFS_X86_FBSD60_ENV 1 /* added at 70--ie, some changes should port <-- */ ++#define AFS_X86_FBSD62_ENV 1 ++#define AFS_X86_FBSD70_ENV 1 ++#define AFS_X86_FBSD71_ENV 1 ++#define AFS_X86_FBSD80_ENV 1 ++#define AFS_X86_FBSD81_ENV 1 ++#define AFS_X86_FBSD90_ENV 1 ++#define AFS_X86_FBSD91_ENV 1 ++#define AFS_X86_FBSD100_ENV 1 ++#define AFS_X86_FBSD110_ENV 1 ++#define AFS_X86_FBSD111_ENV 1 ++#define AFS_X86_ENV 1 ++#undef AFS_NONFSTRANS ++#define AFS_NONFSTRANS 1 ++#define FTRUNC O_TRUNC ++ ++#define IUPD 0x0010 ++#define IACC 0x0020 ++#define ICHG 0x0040 ++#define IMOD 0x0080 ++ ++#define IN_LOCK(ip) lockmgr(&ip->i_lock, LK_EXCLUSIVE, \ ++ NULL, curproc) ++#define IN_UNLOCK(ip) lockmgr(&ip->i_lock, LK_RELEASE, \ ++ NULL, curproc) ++ ++#include ++ ++#define AFS_VFS_ENV 1 ++#define AFS_VFSINCL_ENV 1 ++#define AFS_GREEDY43_ENV 1 ++#define AFS_ENV 1 ++ ++#define AFS_SYSCALL 339 ++#define AFS_MOUNT_AFS "afs" ++ ++#ifndef MOUNT_UFS ++#define MOUNT_UFS "ufs" ++#endif ++ ++#ifndef MOUNT_AFS ++#define MOUNT_AFS AFS_MOUNT_AFS ++#endif ++ ++#define RXK_LISTENER_ENV 1 ++#define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */ ++#define AFS_USE_GETTIMEOFDAY 1 /* use gettimeofday to implement rx clock */ ++ ++/* Extra kernel definitions (from kdefs file) */ ++#ifdef _KERNEL ++#define AFS_GLOBAL_SUNLOCK 1 ++#define AFS_VFS34 1 /* What is VFS34??? */ ++#define AFS_SHORTGID 0 /* are group id's short? */ ++#define afsio_iov uio_iov ++#define afsio_iovcnt uio_iovcnt ++#define afsio_offset uio_offset ++#define afsio_seg uio_segflg ++#define afsio_resid uio_resid ++#define AFS_UIOSYS UIO_SYSSPACE ++#define AFS_UIOUSER UIO_USERSPACE ++#define AFS_CLBYTES CLBYTES ++#define osi_GetTime(x) microtime(x) ++#define AFS_KALLOC(x) osi_fbsd_alloc((x), 1) ++#undef AFS_KALLOC_NOSLEEP ++#define AFS_KALLOC_NOSLEEP(x) osi_fbsd_alloc((x), 0) ++#define AFS_KFREE(x,y) osi_fbsd_free((x)) ++#define v_count v_usecount ++#define v_vfsp v_mount ++#define vfs_bsize mnt_stat.f_bsize ++#define vfs_fsid mnt_stat.f_fsid ++#define va_nodeid va_fileid ++#define vfs_vnodecovered mnt_vnodecovered ++#define direct dirent ++#define vnode_t struct vnode ++ ++#ifndef MUTEX_DEFAULT ++#define MUTEX_DEFAULT 0 ++#endif /* MUTEX_DEFAULT */ ++ ++#ifndef SSYS ++#define SSYS 0x00002 ++#endif /* SSYS */ ++ ++#define p_rcred p_ucred ++ ++#if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) ++enum vcexcl { NONEXCL, EXCL }; ++ ++#ifdef KERNEL ++#ifndef MIN ++#define MIN(A,B) ((A) < (B) ? (A) : (B)) ++#endif ++#ifndef MAX ++#define MAX(A,B) ((A) > (B) ? (A) : (B)) ++#endif ++#endif /* KERNEL */ ++ ++#endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */ ++#endif /* _KERNEL */ ++ ++#else /* !defined(UKERNEL) */ ++ ++/* This section for user space compiles only */ ++ ++#define UKERNEL 1 /* user space kernel */ ++#define AFS_ENV 1 ++#define AFS_VFSINCL_ENV 1 ++#define AFS_USR_FBSD50_ENV 1 ++#define AFS_USR_FBSD51_ENV 1 ++#define AFS_USR_FBSD52_ENV 1 ++#define AFS_USR_FBSD53_ENV 1 ++#define AFS_USR_FBSD60_ENV 1 ++#define AFS_USR_FBSD61_ENV 1 ++#define AFS_USR_FBSD70_ENV 1 ++#define AFS_USR_FBSD71_ENV 1 ++#define AFS_USR_FBSD80_ENV 1 ++#define AFS_USR_FBSD81_ENV 1 ++#define AFS_USR_FBSD90_ENV 1 ++#define AFS_USR_FBSD91_ENV 1 ++#define AFS_USR_FBSD100_ENV 1 ++#define AFS_USR_FBSD110_ENV 1 ++#define AFS_USR_FBSD111_ENV 1 ++#define AFS_USR_FBSD_ENV 1 ++#undef AFS_NONFSTRANS ++#define AFS_NONFSTRANS 1 ++ ++#define AFS_MOUNT_AFS "afs" /* The name of the filesystem type. */ ++#define AFS_SYSCALL 339 ++#define AFS_NAMEI_ENV 1 /* User space interface to file system */ ++#define AFS_64BIT_ENV 1 ++#define AFS_64BIT_IOPS_ENV 1 /* Needed for NAMEI */ ++#define AFS_USERSPACE_IP_ADDR 1 ++#define RXK_LISTENER_ENV 1 ++#define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */ ++ ++#include ++ ++#define afsio_iov uio_iov ++#define afsio_iovcnt uio_iovcnt ++#define afsio_offset uio_offset ++#define afsio_seg uio_segflg ++#define afsio_fmode uio_fmode ++#define afsio_resid uio_resid ++#define AFS_UIOSYS 1 ++#define AFS_UIOUSER UIO_USERSPACE ++#define AFS_CLBYTES MCLBYTES ++#define AFS_MINCHANGE 2 ++#define VATTR_NULL usr_vattr_null ++ ++#define AFS_DIRENT ++#ifndef CMSERVERPREF ++#define CMSERVERPREF ++#endif ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#endif /* !defined(UKERNEL) */ ++ ++/* general user-space compiles */ ++ ++#if defined(UKERNEL) || !defined(KERNEL) ++#define STDLIB_HAS_MALLOC_PROTOS 1 ++#endif ++ ++#endif /* AFS_PARAM_H */ Copied: branches/2017Q4/net/openafs/files/patch-src_config_param.i386__fbsd__120.h (from r455921, head/net/openafs/files/patch-src_config_param.i386__fbsd__120.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q4/net/openafs/files/patch-src_config_param.i386__fbsd__120.h Tue Dec 12 04:21:38 2017 (r456102, copy of r455921, head/net/openafs/files/patch-src_config_param.i386__fbsd__120.h) @@ -0,0 +1,224 @@ +--- /dev/null ++++ src/config/param.i386_fbsd_120.h +@@ -0,0 +1,221 @@ ++#ifndef AFS_PARAM_H ++#define AFS_PARAM_H ++ ++/* Machine / Operating system information */ ++/* XXX temporarilyuse old sysname until new one is assigned ++#define SYS_NAME "i386_fbsd_110" ++#define SYS_NAME_ID SYS_NAME_ID_i386_fbsd_110 ++ ++#define AFSLITTLE_ENDIAN 1 ++#define AFS_HAVE_FFS 1 /* Use system's ffs. */ ++#define AFS_HAVE_STATVFS 1 /* System doesn't support statvfs */ ++#define AFS_VM_RDWR_ENV 1 /* read/write implemented via VM */ ++#define AFS_FAKEOPEN_ENV 1 /* call afs_FakeOpen as if !AFS_VM_RDWR */ ++ ++ ++#ifndef UKERNEL ++/* This section for kernel libafs compiles only */ ++ ++#ifndef IGNORE_STDS_H ++#include ++#endif ++ ++#define AFS_XBSD_ENV 1 /* {Free,Open,Net}BSD */ ++#define AFS_X86_XBSD_ENV 1 ++ ++#define AFS_NAMEI_ENV 1 /* User space interface to file system */ ++#define AFS_64BIT_ENV 1 ++#define AFS_64BIT_CLIENT 1 ++#define AFS_64BIT_IOPS_ENV 1 /* Needed for NAMEI */ ++#define AFS_FBSD_ENV 1 ++#define AFS_FBSD50_ENV 1 ++#define AFS_FBSD51_ENV 1 ++#define AFS_FBSD52_ENV 1 ++#define AFS_FBSD53_ENV 1 ++#define AFS_FBSD60_ENV 1 ++#define AFS_FBSD61_ENV 1 ++#define AFS_FBSD62_ENV 1 ++#define AFS_FBSD70_ENV 1 ++#define AFS_FBSD71_ENV 1 ++#define AFS_FBSD80_ENV 1 ++#define AFS_FBSD81_ENV 1 ++#define AFS_FBSD90_ENV 1 ++#define AFS_FBSD91_ENV 1 ++#define AFS_FBSD100_ENV 1 ++#define AFS_FBSD110_ENV 1 ++#define AFS_X86_FBSD_ENV 1 ++#define AFS_X86_FBSD50_ENV 1 ++#define AFS_X86_FBSD60_ENV 1 /* added at 70--ie, some changes should port <-- */ ++#define AFS_X86_FBSD62_ENV 1 ++#define AFS_X86_FBSD70_ENV 1 ++#define AFS_X86_FBSD71_ENV 1 ++#define AFS_X86_FBSD80_ENV 1 ++#define AFS_X86_FBSD81_ENV 1 ++#define AFS_X86_FBSD90_ENV 1 ++#define AFS_X86_FBSD91_ENV 1 ++#define AFS_X86_FBSD100_ENV 1 ++#define AFS_X86_FBSD110_ENV 1 ++#define AFS_X86_FBSD111_ENV 1 ++#define AFS_X86_FBSD120_ENV 1 ++#define AFS_X86_ENV 1 ++#undef AFS_NONFSTRANS ++#define AFS_NONFSTRANS 1 ++#define FTRUNC O_TRUNC ++ ++#define IUPD 0x0010 ++#define IACC 0x0020 ++#define ICHG 0x0040 ++#define IMOD 0x0080 ++ ++#define IN_LOCK(ip) lockmgr(&ip->i_lock, LK_EXCLUSIVE, \ ++ NULL, curproc) ++#define IN_UNLOCK(ip) lockmgr(&ip->i_lock, LK_RELEASE, \ ++ NULL, curproc) ++ ++#include ++ ++#define AFS_VFS_ENV 1 ++#define AFS_VFSINCL_ENV 1 ++#define AFS_GREEDY43_ENV 1 ++#define AFS_ENV 1 ++ ++#define AFS_SYSCALL 339 ++#define AFS_MOUNT_AFS "afs" ++ ++#ifndef MOUNT_UFS ++#define MOUNT_UFS "ufs" ++#endif ++ ++#ifndef MOUNT_AFS ++#define MOUNT_AFS AFS_MOUNT_AFS ++#endif ++ ++#define RXK_LISTENER_ENV 1 ++#define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */ ++#define AFS_USE_GETTIMEOFDAY 1 /* use gettimeofday to implement rx clock */ ++ ++/* Extra kernel definitions (from kdefs file) */ ++#ifdef _KERNEL ++#define AFS_GLOBAL_SUNLOCK 1 ++#define AFS_VFS34 1 /* What is VFS34??? */ ++#define AFS_SHORTGID 0 /* are group id's short? */ ++#define afsio_iov uio_iov ++#define afsio_iovcnt uio_iovcnt ++#define afsio_offset uio_offset ++#define afsio_seg uio_segflg ++#define afsio_resid uio_resid ++#define AFS_UIOSYS UIO_SYSSPACE ++#define AFS_UIOUSER UIO_USERSPACE ++#define AFS_CLBYTES CLBYTES ++#define osi_GetTime(x) microtime(x) ++#define AFS_KALLOC(x) osi_fbsd_alloc((x), 1) ++#undef AFS_KALLOC_NOSLEEP ++#define AFS_KALLOC_NOSLEEP(x) osi_fbsd_alloc((x), 0) ++#define AFS_KFREE(x,y) osi_fbsd_free((x)) ++#define v_count v_usecount ++#define v_vfsp v_mount ++#define vfs_bsize mnt_stat.f_bsize ++#define vfs_fsid mnt_stat.f_fsid ++#define va_nodeid va_fileid ++#define vfs_vnodecovered mnt_vnodecovered ++#define direct dirent ++#define vnode_t struct vnode ++ ++#ifndef MUTEX_DEFAULT ++#define MUTEX_DEFAULT 0 ++#endif /* MUTEX_DEFAULT */ ++ ++#ifndef SSYS ++#define SSYS 0x00002 ++#endif /* SSYS */ ++ ++#define p_rcred p_ucred ++ ++#if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) ++enum vcexcl { NONEXCL, EXCL }; ++ ++#ifdef KERNEL ++#ifndef MIN ++#define MIN(A,B) ((A) < (B) ? (A) : (B)) ++#endif ++#ifndef MAX ++#define MAX(A,B) ((A) > (B) ? (A) : (B)) ++#endif ++#endif /* KERNEL */ ++ ++#endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */ ++#endif /* _KERNEL */ ++ ++#else /* !defined(UKERNEL) */ ++ ++/* This section for user space compiles only */ ++ ++#define UKERNEL 1 /* user space kernel */ ++#define AFS_ENV 1 ++#define AFS_VFSINCL_ENV 1 ++#define AFS_USR_FBSD50_ENV 1 ++#define AFS_USR_FBSD51_ENV 1 ++#define AFS_USR_FBSD52_ENV 1 ++#define AFS_USR_FBSD53_ENV 1 ++#define AFS_USR_FBSD60_ENV 1 ++#define AFS_USR_FBSD61_ENV 1 ++#define AFS_USR_FBSD70_ENV 1 ++#define AFS_USR_FBSD71_ENV 1 ++#define AFS_USR_FBSD80_ENV 1 ++#define AFS_USR_FBSD81_ENV 1 ++#define AFS_USR_FBSD90_ENV 1 ++#define AFS_USR_FBSD91_ENV 1 ++#define AFS_USR_FBSD100_ENV 1 ++#define AFS_USR_FBSD110_ENV 1 ++#define AFS_USR_FBSD111_ENV 1 ++#define AFS_USR_FBSD120_ENV 1 ++#define AFS_USR_FBSD_ENV 1 ++#undef AFS_NONFSTRANS ++#define AFS_NONFSTRANS 1 ++ ++#define AFS_MOUNT_AFS "afs" /* The name of the filesystem type. */ ++#define AFS_SYSCALL 339 ++#define AFS_NAMEI_ENV 1 /* User space interface to file system */ ++#define AFS_64BIT_ENV 1 ++#define AFS_64BIT_IOPS_ENV 1 /* Needed for NAMEI */ ++#define AFS_USERSPACE_IP_ADDR 1 ++#define RXK_LISTENER_ENV 1 ++#define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */ ++ ++#include ++ ++#define afsio_iov uio_iov ++#define afsio_iovcnt uio_iovcnt ++#define afsio_offset uio_offset ++#define afsio_seg uio_segflg ++#define afsio_fmode uio_fmode ++#define afsio_resid uio_resid ++#define AFS_UIOSYS 1 ++#define AFS_UIOUSER UIO_USERSPACE ++#define AFS_CLBYTES MCLBYTES ++#define AFS_MINCHANGE 2 ++#define VATTR_NULL usr_vattr_null ++ ++#define AFS_DIRENT ++#ifndef CMSERVERPREF ++#define CMSERVERPREF ++#endif ++ ++#include ++#include ++#include ++#include ++#include *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Tue Dec 12 04:28:52 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 43C09E8CCBF; Tue, 12 Dec 2017 04:28:52 +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 103846B594; Tue, 12 Dec 2017 04:28:51 +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 vBC4SpWq040529; Tue, 12 Dec 2017 04:28:51 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC4SpjC040528; Tue, 12 Dec 2017 04:28:51 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712120428.vBC4SpjC040528@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 04:28:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456104 - branches/2017Q4/devel/llvm-devel X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/devel/llvm-devel X-SVN-Commit-Revision: 456104 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 04:28:52 -0000 Author: jbeich Date: Tue Dec 12 04:28:50 2017 New Revision: 456104 URL: https://svnweb.freebsd.org/changeset/ports/456104 Log: MFH: r456103 devel/llvm-devel: re-try on powerpc* after r449590 Approved by: ports-secteam blanket Modified: branches/2017Q4/devel/llvm-devel/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/devel/llvm-devel/Makefile ============================================================================== --- branches/2017Q4/devel/llvm-devel/Makefile Tue Dec 12 04:26:57 2017 (r456103) +++ branches/2017Q4/devel/llvm-devel/Makefile Tue Dec 12 04:28:50 2017 (r456104) @@ -9,8 +9,6 @@ PKGNAMESUFFIX= -devel MAINTAINER= brooks@FreeBSD.org COMMENT= LLVM and Clang -BROKEN_powerpc64= Does not build: error: vsnprintf was not declared in this scope - LLVM_SUFFIX= -devel LLVM_PREFIX= ${PREFIX}/llvm${LLVM_SUFFIX} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${LLVM_SUFFIX} From owner-svn-ports-branches@freebsd.org Tue Dec 12 05:11:43 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 B7550E8D92D; Tue, 12 Dec 2017 05:11:43 +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 909E86C708; Tue, 12 Dec 2017 05:11:43 +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 vBC5Bgxv059528; Tue, 12 Dec 2017 05:11:42 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBC5BfFp059513; Tue, 12 Dec 2017 05:11:41 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712120511.vBC5BfFp059513@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 05:11:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456106 - in branches/2017Q4: cad/libopencad devel/caf devel/cppcheck devel/msp430-debug-stack devel/re2 emulators/mednafen games/corsix-th games/endless-sky lang/cling multimedia/ffmpe... X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2017Q4: cad/libopencad devel/caf devel/cppcheck devel/msp430-debug-stack devel/re2 emulators/mednafen games/corsix-th games/endless-sky lang/cling multimedia/ffmpegthumbnailer ports-mgmt/p... X-SVN-Commit-Revision: 456106 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 05:11:43 -0000 Author: jbeich Date: Tue Dec 12 05:11:41 2017 New Revision: 456106 URL: https://svnweb.freebsd.org/changeset/ports/456106 Log: MFH: r456105 Re-try ports affected by bug 193528 on powerpc* after r449590 Approved by: ports-secteam blanket Modified: branches/2017Q4/cad/libopencad/Makefile branches/2017Q4/devel/caf/Makefile branches/2017Q4/devel/cppcheck/Makefile branches/2017Q4/devel/msp430-debug-stack/Makefile branches/2017Q4/devel/re2/Makefile branches/2017Q4/emulators/mednafen/Makefile branches/2017Q4/games/corsix-th/Makefile branches/2017Q4/games/endless-sky/Makefile branches/2017Q4/lang/cling/Makefile branches/2017Q4/multimedia/ffmpegthumbnailer/Makefile branches/2017Q4/ports-mgmt/portal/Makefile branches/2017Q4/security/i2pd/Makefile branches/2017Q4/textproc/highlight/Makefile branches/2017Q4/textproc/opengrm-ngram/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/cad/libopencad/Makefile ============================================================================== --- branches/2017Q4/cad/libopencad/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/cad/libopencad/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -13,7 +13,6 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_armv6= fails to compile: cadheader.cpp: ambiguous conversion for functional-style cast from 'time_t' to 'CADVariant' -BROKEN_powerpc64= fails to compile: r2000.cpp: 'to_string' was not declared in this scope USE_GITHUB= yes GH_ACCOUNT= sandyre Modified: branches/2017Q4/devel/caf/Makefile ============================================================================== --- branches/2017Q4/devel/caf/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/devel/caf/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -12,8 +12,6 @@ COMMENT= C++ actor framework LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= does not build: error: to_string is not a member of std - CXXFLAGS+= -std=c++11 -Wextra -Wall -pedantic LDFLAGS+= -pthread USES= cmake:outsource compiler:c++11-lang Modified: branches/2017Q4/devel/cppcheck/Makefile ============================================================================== --- branches/2017Q4/devel/cppcheck/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/devel/cppcheck/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -13,8 +13,6 @@ COMMENT?= Static analysis of C/C++ code LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= fails to compile: analyzerinfo.cpp: 'to_string' is not a member of 'std' - USES= compiler:c++11-lib cmake tar:bzip2 .if defined(GUI_ONLY) Modified: branches/2017Q4/devel/msp430-debug-stack/Makefile ============================================================================== --- branches/2017Q4/devel/msp430-debug-stack/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/devel/msp430-debug-stack/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -23,8 +23,6 @@ BROKEN= fails to package LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs \ libhidapi.so:comms/hidapi -BROKEN_powerpc64= fails to compile: adapt_enum.h: 'to_string' is not a member of 'std' - USES= compiler:c++11-lib dos2unix gmake zip:infozip USE_LDCONFIG= yes Modified: branches/2017Q4/devel/re2/Makefile ============================================================================== --- branches/2017Q4/devel/re2/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/devel/re2/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -11,8 +11,6 @@ COMMENT= Fast C++ regex library LICENSE= BSD3CLAUSE -BROKEN_powerpc64= fails to compile: prefilter_tree.cc: 'to_string' is not a member of 'std' - MAKE_ARGS= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" SED_INPLACE="${SED} -i ''" prefix=${PREFIX} USE_LDCONFIG= yes USES= compiler:c++11-lang gmake pathfix Modified: branches/2017Q4/emulators/mednafen/Makefile ============================================================================== --- branches/2017Q4/emulators/mednafen/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/emulators/mednafen/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -17,7 +17,6 @@ LIB_DEPENDS= libcdio.so:sysutils/libcdio \ libsndfile.so:audio/libsndfile \ libvorbis.so:audio/libvorbis -BROKEN_powerpc64= fails to compile: mednafen.cpp: 'to_string' is not a member of 'std' BROKEN_sparc64= fails to compile due to internal compiler error GNU_CONFIGURE= yes Modified: branches/2017Q4/games/corsix-th/Makefile ============================================================================== --- branches/2017Q4/games/corsix-th/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/games/corsix-th/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -16,8 +16,6 @@ LIB_DEPENDS= libfreetype.so:print/freetype2 RUN_DEPENDS= ${LUA_MODLIBDIR}/lfs.so:devel/luafilesystem \ ${LUA_MODLIBDIR}/lpeg.so:devel/lua-lpeg -BROKEN_powerpc64= fails to compile: th_map_overlays.cpp: 'to_string' is not a member of 'std' - USES= cmake compiler:c++11-lib dos2unix iconv lua pkgconfig USE_SDL= mixer2 DOS2UNIX_FILES= CMake/FindFFmpeg.cmake \ Modified: branches/2017Q4/games/endless-sky/Makefile ============================================================================== --- branches/2017Q4/games/endless-sky/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/games/endless-sky/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -17,8 +17,6 @@ LICENSE_FILE_GPLv3+ = ${WRKSRC}/license.txt LIB_DEPENDS= libpng.so:graphics/png \ libmad.so:audio/libmad -BROKEN_powerpc64= fails to compile: Dialog.h: 'to_string' is not a member of 'std' - USE_GITHUB= yes USES= compiler:c++11-lib jpeg localbase:ldflags openal scons Modified: branches/2017Q4/lang/cling/Makefile ============================================================================== --- branches/2017Q4/lang/cling/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/lang/cling/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -19,7 +19,6 @@ LICENSE_FILE_NCSA= ${WRKSRC}/tools/cling/LICENSE.TXT LICENSE_PERMS_LLVM= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept BROKEN_armv6= fails to compile: AArch64TargetMachine.cpp: relocation truncated to fit: R_ARM_CALL against symbol '__aeabi_uldivmod' -BROKEN_powerpc64= fails to compile: IncrementalParser.cpp: 'to_string' is not a member of 'std' WRKSRC= ${WRKDIR}/src Modified: branches/2017Q4/multimedia/ffmpegthumbnailer/Makefile ============================================================================== --- branches/2017Q4/multimedia/ffmpegthumbnailer/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/multimedia/ffmpegthumbnailer/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -15,8 +15,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libpng.so:graphics/png \ libswscale.so:multimedia/ffmpeg -BROKEN_powerpc64= fails to compile: moviedecoder.cpp: error: 'to_string' is not a member of 'std' - USE_GITHUB= yes GH_ACCOUNT= dirkvdb Modified: branches/2017Q4/ports-mgmt/portal/Makefile ============================================================================== --- branches/2017Q4/ports-mgmt/portal/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/ports-mgmt/portal/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -10,8 +10,6 @@ COMMENT= Front-end to pkg(8) LICENSE= BSD2CLAUSE -BROKEN_powerpc64= does not build: error: to_string is not a member of std - PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz Modified: branches/2017Q4/security/i2pd/Makefile ============================================================================== --- branches/2017Q4/security/i2pd/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/security/i2pd/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -14,8 +14,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libboost_thread.so:devel/boost-libs -BROKEN_powerpc64= does not build: error: to_string is not a member of std - USE_GITHUB= yes GH_ACCOUNT= PurpleI2P Modified: branches/2017Q4/textproc/highlight/Makefile ============================================================================== --- branches/2017Q4/textproc/highlight/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/textproc/highlight/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -16,8 +16,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= boost-libs>0:devel/boost-libs -BROKEN_powerpc64= fails to compile: rtfgenerator.cpp:279:37: 'to_string' was not declared in this scope - USES= compiler:c++11-lib gmake lua:52 pkgconfig tar:bzip2 USE_CXXSTD= c++11 MAKEFILE= makefile Modified: branches/2017Q4/textproc/opengrm-ngram/Makefile ============================================================================== --- branches/2017Q4/textproc/opengrm-ngram/Makefile Tue Dec 12 04:35:49 2017 (r456105) +++ branches/2017Q4/textproc/opengrm-ngram/Makefile Tue Dec 12 05:11:41 2017 (r456106) @@ -13,7 +13,6 @@ COMMENT= Library for making n-gram language models enc LICENSE= APACHE20 BROKEN= fails to build -BROKEN_powerpc64= fails to compile: ngram-count.cc: 'to_string' is not a member of 'std' LIB_DEPENDS= libfst.so:math/openfst From owner-svn-ports-branches@freebsd.org Tue Dec 12 11:45:14 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 3C5FEE95668; Tue, 12 Dec 2017 11:45:14 +0000 (UTC) (envelope-from sunpoet@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 07EB3782ED; Tue, 12 Dec 2017 11:45:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBCBjD9l026644; Tue, 12 Dec 2017 11:45:13 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBCBjDOg026642; Tue, 12 Dec 2017 11:45:13 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201712121145.vBCBjDOg026642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 12 Dec 2017 11:45:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456121 - in branches/2017Q4/mail/procmail: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in branches/2017Q4/mail/procmail: . files X-SVN-Commit-Revision: 456121 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 11:45:14 -0000 Author: sunpoet Date: Tue Dec 12 11:45:12 2017 New Revision: 456121 URL: https://svnweb.freebsd.org/changeset/ports/456121 Log: MFH: r455800 Fix CVE-2017-16844 - Bump PORTREVISION for package change PR: 223777 Submitted by: Jeremy Chadwick , romain Security: 288f7cee-ced6-11e7-8ae9-0050569f0b83 Approved by: ports-secteam (swills) Modified: branches/2017Q4/mail/procmail/Makefile branches/2017Q4/mail/procmail/files/patch-src-formisc.c Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/mail/procmail/Makefile ============================================================================== --- branches/2017Q4/mail/procmail/Makefile Tue Dec 12 11:40:45 2017 (r456120) +++ branches/2017Q4/mail/procmail/Makefile Tue Dec 12 11:45:12 2017 (r456121) @@ -3,7 +3,7 @@ PORTNAME= procmail PORTVERSION= 3.22 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= mail MASTER_SITES= ftp://ftp.ucsb.edu/pub/mirrors/procmail/ \ ftp://ftp.informatik.rwth-aachen.de/pub/packages/procmail/ \ Modified: branches/2017Q4/mail/procmail/files/patch-src-formisc.c ============================================================================== --- branches/2017Q4/mail/procmail/files/patch-src-formisc.c Tue Dec 12 11:40:45 2017 (r456120) +++ branches/2017Q4/mail/procmail/files/patch-src-formisc.c Tue Dec 12 11:45:12 2017 (r456121) @@ -14,3 +14,12 @@ } hitspc=2; } +@@ -104,7 +103,7 @@ + } + /* append to buf */ + void loadbuf(text,len)const char*const text;const size_t len; +-{ if(buffilled+len>buflen) /* buf can't hold the text */ ++{ while(buffilled+len>buflen) /* buf can't hold the text */ + buf=realloc(buf,buflen+=Bsize); + tmemmove(buf+buffilled,text,len);buffilled+=len; + } From owner-svn-ports-branches@freebsd.org Tue Dec 12 11:49:34 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 1D88FE9581D; Tue, 12 Dec 2017 11:49:34 +0000 (UTC) (envelope-from sunpoet@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 DC9DD78578; Tue, 12 Dec 2017 11:49:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBCBnWlm026933; Tue, 12 Dec 2017 11:49:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBCBnWIx026932; Tue, 12 Dec 2017 11:49:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201712121149.vBCBnWIx026932@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 12 Dec 2017 11:49:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456122 - branches/2017Q4/multimedia/libmediainfo X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2017Q4/multimedia/libmediainfo X-SVN-Commit-Revision: 456122 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 11:49:34 -0000 Author: sunpoet Date: Tue Dec 12 11:49:32 2017 New Revision: 456122 URL: https://svnweb.freebsd.org/changeset/ports/456122 Log: MFH: r455943 Fix build on FreeBSD 10.3 i386 Reference: http://beefy5.nyi.freebsd.org/data/103i386-default/455878/logs/libmediainfo-17.10.log Approved by: ports-secteam (swills) Modified: branches/2017Q4/multimedia/libmediainfo/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/multimedia/libmediainfo/Makefile ============================================================================== --- branches/2017Q4/multimedia/libmediainfo/Makefile Tue Dec 12 11:45:12 2017 (r456121) +++ branches/2017Q4/multimedia/libmediainfo/Makefile Tue Dec 12 11:49:32 2017 (r456122) @@ -39,7 +39,6 @@ TINYXML2_CONFIGURE_ON= --with-libtinyxml2=yes TINYXML2_LIB_DEPENDS= libtinyxml2.so:textproc/tinyxml2 post-patch: - @${TOUCH} ${WRKSRC}/aclocal.m4 @${REINPLACE_CMD} \ -e 's|lib/pkgconfig/|libdata/pkgconfig/|g' \ -e 's|-DMEDIAINFO_LIBMMS_FROMSOURCE||g' \ From owner-svn-ports-branches@freebsd.org Tue Dec 12 12:16:38 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 DF20FE96C0B; Tue, 12 Dec 2017 12:16:38 +0000 (UTC) (envelope-from sunpoet@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 AA0E479924; Tue, 12 Dec 2017 12:16:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBCCGbWN039397; Tue, 12 Dec 2017 12:16:37 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBCCGbF6039396; Tue, 12 Dec 2017 12:16:37 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201712121216.vBCCGbF6039396@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 12 Dec 2017 12:16:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456123 - branches/2017Q4/math/pecl-bitset2/files X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2017Q4/math/pecl-bitset2/files X-SVN-Commit-Revision: 456123 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 12:16:39 -0000 Author: sunpoet Date: Tue Dec 12 12:16:37 2017 New Revision: 456123 URL: https://svnweb.freebsd.org/changeset/ports/456123 Log: MFH: r455971 Fix build PR: 223043 Submitted by: Markus Mann Approved by: ports-secteam (delphij) Added: branches/2017Q4/math/pecl-bitset2/files/ - copied from r455971, head/math/pecl-bitset2/files/ Modified: Directory Properties: branches/2017Q4/ (props changed) From owner-svn-ports-branches@freebsd.org Tue Dec 12 17:33: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 B5711EA012E; Tue, 12 Dec 2017 17:33:15 +0000 (UTC) (envelope-from jkim@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 768AA6788E; Tue, 12 Dec 2017 17:33:15 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBCHXEUo079199; Tue, 12 Dec 2017 17:33:14 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBCHXEg7079196; Tue, 12 Dec 2017 17:33:14 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201712121733.vBCHXEg7079196@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 12 Dec 2017 17:33:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456177 - in branches/2017Q4/www: flashplayer linux-flashplayer X-SVN-Group: ports-branches X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: in branches/2017Q4/www: flashplayer linux-flashplayer X-SVN-Commit-Revision: 456177 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 17:33:15 -0000 Author: jkim Date: Tue Dec 12 17:33:14 2017 New Revision: 456177 URL: https://svnweb.freebsd.org/changeset/ports/456177 Log: MFH: r456176 Update to 28.0.0.126. https://helpx.adobe.com/flash-player/release-note/fp_28_air_28_release_notes.html Approved by: ports-secteam (blanket) Modified: branches/2017Q4/www/flashplayer/Makefile branches/2017Q4/www/linux-flashplayer/Makefile branches/2017Q4/www/linux-flashplayer/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/www/flashplayer/Makefile ============================================================================== --- branches/2017Q4/www/flashplayer/Makefile Tue Dec 12 17:29:34 2017 (r456176) +++ branches/2017Q4/www/flashplayer/Makefile Tue Dec 12 17:33:14 2017 (r456177) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= flashplayer -PORTVERSION= 27.0 +PORTVERSION= 28.0 CATEGORIES= www multimedia DISTFILES= Modified: branches/2017Q4/www/linux-flashplayer/Makefile ============================================================================== --- branches/2017Q4/www/linux-flashplayer/Makefile Tue Dec 12 17:29:34 2017 (r456176) +++ branches/2017Q4/www/linux-flashplayer/Makefile Tue Dec 12 17:33:14 2017 (r456177) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flashplayer -PORTVERSION= 27.0.0.187 +PORTVERSION= 28.0.0.126 CATEGORIES= www multimedia linux MASTER_SITES= https://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION}/ PKGNAMEPREFIX= linux- Modified: branches/2017Q4/www/linux-flashplayer/distinfo ============================================================================== --- branches/2017Q4/www/linux-flashplayer/distinfo Tue Dec 12 17:29:34 2017 (r456176) +++ branches/2017Q4/www/linux-flashplayer/distinfo Tue Dec 12 17:33:14 2017 (r456177) @@ -1,3 +1,3 @@ -TIMESTAMP = 1510856334 -SHA256 (flashplayer/27.0.0.187/flash_player_npapi_linux.i386.tar.gz) = bc3a0722a72f6b24d314c04b75c05412c7b0802b8392c68b081c10549a244b1a -SIZE (flashplayer/27.0.0.187/flash_player_npapi_linux.i386.tar.gz) = 8511242 +TIMESTAMP = 1513099078 +SHA256 (flashplayer/28.0.0.126/flash_player_npapi_linux.i386.tar.gz) = 9ef7d79adce8bdf5529d26a4e1ded20d754dea628da60c455500e3532396de4f +SIZE (flashplayer/28.0.0.126/flash_player_npapi_linux.i386.tar.gz) = 8510309 From owner-svn-ports-branches@freebsd.org Wed Dec 13 14:48:18 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 D6DDCEA0923; Wed, 13 Dec 2017 14:48:18 +0000 (UTC) (envelope-from swills@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 9E96473A1A; Wed, 13 Dec 2017 14:48:18 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBDEmHKf010254; Wed, 13 Dec 2017 14:48:17 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBDEmH3q010252; Wed, 13 Dec 2017 14:48:17 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201712131448.vBDEmH3q010252@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 13 Dec 2017 14:48:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456211 - in branches/2017Q4/textproc/libxml2: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in branches/2017Q4/textproc/libxml2: . files X-SVN-Commit-Revision: 456211 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: Wed, 13 Dec 2017 14:48:18 -0000 Author: swills Date: Wed Dec 13 14:48:17 2017 New Revision: 456211 URL: https://svnweb.freebsd.org/changeset/ports/456211 Log: MFH: r456210 textproc/libxml2: update to 2.9.7 PR: 222893 PR: 224189 Reported by: Walter Hop Approved by: gnome@ (kwm) Exp-run by: antoine Security: 76e59f55-4f7a-4887-bcb0-11604004163a Approved by: ports-secteam (implicit) Deleted: branches/2017Q4/textproc/libxml2/files/patch-d8083bf Modified: branches/2017Q4/textproc/libxml2/Makefile branches/2017Q4/textproc/libxml2/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/textproc/libxml2/Makefile ============================================================================== --- branches/2017Q4/textproc/libxml2/Makefile Wed Dec 13 14:46:44 2017 (r456210) +++ branches/2017Q4/textproc/libxml2/Makefile Wed Dec 13 14:48:17 2017 (r456211) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libxml2 -PORTVERSION= 2.9.4 +PORTVERSION= 2.9.7 PORTREVISION?= 0 CATEGORIES?= textproc gnome MASTER_SITES= ftp://xmlsoft.org/libxml2/ \ Modified: branches/2017Q4/textproc/libxml2/distinfo ============================================================================== --- branches/2017Q4/textproc/libxml2/distinfo Wed Dec 13 14:46:44 2017 (r456210) +++ branches/2017Q4/textproc/libxml2/distinfo Wed Dec 13 14:48:17 2017 (r456211) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472161994 -SHA256 (gnome2/libxml2-2.9.4.tar.gz) = ffb911191e509b966deb55de705387f14156e1a56b21824357cdf0053233633c -SIZE (gnome2/libxml2-2.9.4.tar.gz) = 5374830 +TIMESTAMP = 1512750289 +SHA256 (gnome2/libxml2-2.9.7.tar.gz) = f63c5e7d30362ed28b38bfa1ac6313f9a80230720b7fb6c80575eeab3ff5900c +SIZE (gnome2/libxml2-2.9.7.tar.gz) = 5467389 From owner-svn-ports-branches@freebsd.org Thu Dec 14 14:47:02 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 58284E82D90; Thu, 14 Dec 2017 14:47:02 +0000 (UTC) (envelope-from swills@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 1E48866E7F; Thu, 14 Dec 2017 14:47:02 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBEEkKt9017249; Thu, 14 Dec 2017 14:46:20 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBEEkKmO017248; Thu, 14 Dec 2017 14:46:20 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201712141446.vBEEkKmO017248@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 14 Dec 2017 14:46:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456300 - branches/2017Q4/lang/oo2c X-SVN-Group: ports-branches X-SVN-Commit-Author: swills X-SVN-Commit-Paths: branches/2017Q4/lang/oo2c X-SVN-Commit-Revision: 456300 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: Thu, 14 Dec 2017 14:47:02 -0000 Author: swills Date: Thu Dec 14 14:46:20 2017 New Revision: 456300 URL: https://svnweb.freebsd.org/changeset/ports/456300 Log: MFH: r456299 lang/oo2c: mark broken with new libxml2 Approved by: ports-secteam (implicit) Modified: branches/2017Q4/lang/oo2c/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/lang/oo2c/Makefile ============================================================================== --- branches/2017Q4/lang/oo2c/Makefile Thu Dec 14 14:45:47 2017 (r456299) +++ branches/2017Q4/lang/oo2c/Makefile Thu Dec 14 14:46:20 2017 (r456300) @@ -13,6 +13,8 @@ COMMENT= Optimizing Oberon-2 compiler of University of LICENSE= GPLv2 +BROKEN= Fails to build with new libxml2 + BUILD_DEPENDS= xsltproc:textproc/libxslt RUN_DEPENDS= libtool:devel/libtool LIB_DEPENDS= libgc.so:devel/boehm-gc From owner-svn-ports-branches@freebsd.org Thu Dec 14 14:53:00 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 10240E8323A; Thu, 14 Dec 2017 14:53:00 +0000 (UTC) (envelope-from madpilot@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 CE15567593; Thu, 14 Dec 2017 14:52:59 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBEEqwRG021387; Thu, 14 Dec 2017 14:52:58 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBEEqw39021385; Thu, 14 Dec 2017 14:52:58 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201712141452.vBEEqw39021385@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 14 Dec 2017 14:52:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456301 - branches/2017Q4/net/asterisk13 X-SVN-Group: ports-branches X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: branches/2017Q4/net/asterisk13 X-SVN-Commit-Revision: 456301 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: Thu, 14 Dec 2017 14:53:00 -0000 Author: madpilot Date: Thu Dec 14 14:52:58 2017 New Revision: 456301 URL: https://svnweb.freebsd.org/changeset/ports/456301 Log: MFH: r456267 Update asterisk13 to 13.18.4 Security: 4a67450a-e044-11e7-accc-001999f8d30b Approved by: ports-secteam (swills) Modified: branches/2017Q4/net/asterisk13/Makefile branches/2017Q4/net/asterisk13/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/net/asterisk13/Makefile ============================================================================== --- branches/2017Q4/net/asterisk13/Makefile Thu Dec 14 14:46:20 2017 (r456300) +++ branches/2017Q4/net/asterisk13/Makefile Thu Dec 14 14:52:58 2017 (r456301) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= asterisk -PORTVERSION= 13.18.3 -PORTREVISION= 1 +PORTVERSION= 13.18.4 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ Modified: branches/2017Q4/net/asterisk13/distinfo ============================================================================== --- branches/2017Q4/net/asterisk13/distinfo Thu Dec 14 14:46:20 2017 (r456300) +++ branches/2017Q4/net/asterisk13/distinfo Thu Dec 14 14:52:58 2017 (r456301) @@ -1,6 +1,6 @@ -TIMESTAMP = 1512163847 -SHA256 (asterisk-13.18.3.tar.gz) = 728db9e4ef34e3f0382c77e5eaa8780b52655377a0db395274667b73cf3a6a1d -SIZE (asterisk-13.18.3.tar.gz) = 32972056 +TIMESTAMP = 1513196474 +SHA256 (asterisk-13.18.4.tar.gz) = a14c2132eaa4f581452cd6d4d5094639e67a28eb70102458c796660d704115e4 +SIZE (asterisk-13.18.4.tar.gz) = 32973012 SHA256 (asterisk-core-sounds-en-g729-1.5.tar.gz) = 8b28a59cfa53b59c76e0a191704f0708e3d83acffab8c5e6f25dfc599f0123f9 SIZE (asterisk-core-sounds-en-g729-1.5.tar.gz) = 1551123 SHA256 (asterisk-moh-opsound-g729-2.03.tar.gz) = 0147ca9a97f0c550227aacb7793499057c4d2c64e021c95f93722f27d5549585 From owner-svn-ports-branches@freebsd.org Thu Dec 14 15:01:23 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 65FC8E83591; Thu, 14 Dec 2017 15:01:23 +0000 (UTC) (envelope-from madpilot@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 1BC1B67A7B; Thu, 14 Dec 2017 15:01:23 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBEF1MCX025577; Thu, 14 Dec 2017 15:01:22 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBEF1LLE025560; Thu, 14 Dec 2017 15:01:21 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201712141501.vBEF1LLE025560@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 14 Dec 2017 15:01:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456302 - in branches/2017Q4/sysutils/xfce4-wavelan-plugin: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in branches/2017Q4/sysutils/xfce4-wavelan-plugin: . files X-SVN-Commit-Revision: 456302 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: Thu, 14 Dec 2017 15:01:23 -0000 Author: madpilot Date: Thu Dec 14 15:01:21 2017 New Revision: 456302 URL: https://svnweb.freebsd.org/changeset/ports/456302 Log: MFH: r455225 - Import upstream patch to fix a memory leak [1] - While here rename and regenerate patches PR: 223937 [1] Submitted by: J.R. Oldroyd Obtained from: https://git.xfce.org/panel-plugins/xfce4-wavelan-plugin/commit/?id=d4c76389d63199636c52e8a7a0ce80d5f2fde591 Approved by: ports-secteam (swills) Added: branches/2017Q4/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wavelan.c - copied unchanged from r455225, head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wavelan.c branches/2017Q4/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wi__bsd.c - copied unchanged from r455225, head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wi__bsd.c Deleted: branches/2017Q4/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin__wavelan.c branches/2017Q4/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin__wi_bsd.c Modified: branches/2017Q4/sysutils/xfce4-wavelan-plugin/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/sysutils/xfce4-wavelan-plugin/Makefile ============================================================================== --- branches/2017Q4/sysutils/xfce4-wavelan-plugin/Makefile Thu Dec 14 14:52:58 2017 (r456301) +++ branches/2017Q4/sysutils/xfce4-wavelan-plugin/Makefile Thu Dec 14 15:01:21 2017 (r456302) @@ -3,6 +3,7 @@ PORTNAME= xfce4-wavelan-plugin PORTVERSION= 0.6.0 +PORTREVISION= 1 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 Copied: branches/2017Q4/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wavelan.c (from r455225, head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wavelan.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q4/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wavelan.c Thu Dec 14 15:01:21 2017 (r456302, copy of r455225, head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wavelan.c) @@ -0,0 +1,80 @@ +--- panel-plugin/wavelan.c.orig 2016-10-29 06:46:02 UTC ++++ panel-plugin/wavelan.c +@@ -64,6 +64,9 @@ typedef struct + GtkWidget *image; + GtkWidget *signal; + GtkWidget *tooltip_text; ++#if GTK_CHECK_VERSION (3, 16, 0) ++ GtkCssProvider *css_provider; ++#endif + + XfcePanelPlugin *plugin; + +@@ -77,7 +80,6 @@ wavelan_set_state(t_wavelan *wavelan, gint state) + { + GdkRGBA color; + #if GTK_CHECK_VERSION (3, 16, 0) +- GtkCssProvider *css_provider; + gchar *css; + #endif + +@@ -99,11 +101,11 @@ wavelan_set_state(t_wavelan *wavelan, gint state) + + if (wavelan->signal_colors) { + /* set color */ +- if (state > 70) ++ if (state > 75) + gdk_rgba_parse(&color, signal_color_strong); +- else if (state > 55) ++ else if (state > 50) + gdk_rgba_parse(&color, signal_color_good); +- else if (state > 40) ++ else if (state > 25) + gdk_rgba_parse(&color, signal_color_weak); + else + gdk_rgba_parse(&color, signal_color_bad); +@@ -118,12 +120,7 @@ wavelan_set_state(t_wavelan *wavelan, gint state) + #endif + gdk_rgba_to_string(&color)); + /* Setup Gtk style */ +- css_provider = gtk_css_provider_new (); +- gtk_css_provider_load_from_data (css_provider, css, strlen(css), NULL); +- gtk_style_context_add_provider ( +- GTK_STYLE_CONTEXT (gtk_widget_get_style_context (GTK_WIDGET (wavelan->signal))), +- GTK_STYLE_PROVIDER (css_provider), +- GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); ++ gtk_css_provider_load_from_data (wavelan->css_provider, css, strlen(css), NULL); + g_free(css); + #else + gtk_widget_override_background_color(GTK_WIDGET(wavelan->signal), +@@ -183,7 +180,15 @@ wavelan_timer(gpointer data) + } + } + else { +- wavelan_set_state(wavelan, stats.ws_quality); ++ /* ++ * Usual formula is: qual = 4 * (signal - noise) ++ * where noise is typically about -96dBm, but we don't have ++ * the actual noise value here, so approximate one. ++ */ ++ if (strcmp(stats.ws_qunit, "dBm") == 0) ++ wavelan_set_state(wavelan, 4 * (stats.ws_quality - (-96))); ++ else ++ wavelan_set_state(wavelan, stats.ws_quality); + + if (strlen(stats.ws_netname) > 0) + /* Translators: net_name: quality quality_unit at rate Mb/s*/ +@@ -338,6 +343,13 @@ wavelan_new(XfcePanelPlugin *plugin) + + /* setup progressbar */ + wavelan->signal = gtk_progress_bar_new(); ++#if GTK_CHECK_VERSION (3, 16, 0) ++ wavelan->css_provider = gtk_css_provider_new (); ++ gtk_style_context_add_provider ( ++ GTK_STYLE_CONTEXT (gtk_widget_get_style_context (GTK_WIDGET (wavelan->signal))), ++ GTK_STYLE_PROVIDER (wavelan->css_provider), ++ GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); ++#endif + wavelan->image = GTK_WIDGET(xfce_panel_image_new_from_source("network-wireless")); + + gtk_box_pack_start(GTK_BOX(wavelan->box), GTK_WIDGET(wavelan->image), FALSE, FALSE, 0); Copied: branches/2017Q4/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wi__bsd.c (from r455225, head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wi__bsd.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q4/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wi__bsd.c Thu Dec 14 15:01:21 2017 (r456302, copy of r455225, head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wi__bsd.c) @@ -0,0 +1,251 @@ +--- panel-plugin/wi_bsd.c.orig 2016-05-01 15:53:40 UTC ++++ panel-plugin/wi_bsd.c +@@ -3,6 +3,8 @@ + * (OpenBSD support) + * 2008 Pietro Cerutti + * (FreeBSD > 700000 adaptation) ++ * 2014 J.R. Oldroyd ++ * (Enhance FreeBSD support) + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions +@@ -26,14 +28,9 @@ + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +-#if !defined(__FreeBSD_kernel__) && defined(__FreeBSD__) +-#define __FreeBSD_kernel__ __FreeBSD__ +-#endif +-#if !defined(__FreeBSD_kernel_version) && defined(__FreeBSD_version) +-#define __FreeBSD_kernel_version __FreeBSD_version +-#endif ++#include + +-#if defined(__NetBSD__) || defined(__FreeBSD_kernel__) || defined(__FreeBSD_kernel_kernel__) || defined(__OpenBSD__) ++#if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) + + #include + #include +@@ -44,20 +41,14 @@ + + #include + #include +-#ifdef __FreeBSD_kernel__ ++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) + #include + #include + #include +-#if __FreeBSD_kernel_version >= 700000 + #include + #include + #include + #else +-#include +-#include +-#include +-#endif +-#else + #ifdef __NetBSD__ + #include + #include +@@ -107,14 +98,10 @@ struct wi_device + }; + + static int _wi_carrier(const struct wi_device *); +-#if defined(__FreeBSD_kernel__) ++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) + static int _wi_vendor(const struct wi_device *, char *, size_t); +-#if __FreeBSD_kernel_version > 700000 + static int _wi_getval(const struct wi_device *, struct ieee80211req_scan_result *); +-#else +-static int _wi_getval(const struct wi_device *, struct wi_req *); + #endif +-#endif + static int _wi_netname(const struct wi_device *, char *, size_t); + static int _wi_quality(const struct wi_device *, int *); + static int _wi_rate(const struct wi_device *, int *); +@@ -164,7 +151,7 @@ wi_query(struct wi_device *device, struct wi_stats *st + strlcpy(stats->ws_qunit, "dBm", 4); + #endif + /* check vendor (independent of carrier state) */ +-#if defined(__FreeBSD_kernel__) ++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) + if ((result = _wi_vendor(device, stats->ws_vendor, WI_MAXSTRLEN)) != WI_OK) + return(result); + #endif +@@ -305,12 +292,10 @@ _wi_rate(const struct wi_device *device, int *rate) + } + #endif + +-/* seems only FreeBSD supports this operation */ +-#if defined(__FreeBSD_kernel__) ++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) + static int + _wi_vendor(const struct wi_device *device, char *buffer, size_t len) + { +-#if defined(__FreeBSD_kernel__) && __FreeBSD_kernel_version >= 700000 + /* + * We use sysctl to get a device description + */ +@@ -327,59 +312,30 @@ _wi_vendor(const struct wi_device *device, char *buffe + dev_number = (int)strtol(c, NULL, 10); + *c = '\0'; + ++ /* ++ * Also, wlan doesn't present dev.wlan.N.%desc, need to use ++ * underlying driver name, instead: dev.ath.0.%desc, so we ++ * need to get the parent's name. ++ */ ++ if(strcmp(dev_name, "wlan") == 0) { ++ snprintf(mib, sizeof(mib), "net.%s.%d.%%parent", dev_name, dev_number); ++ if(sysctlbyname(mib, dev_name, &len, NULL, 0) == -1) ++ return (WI_NOSUCHDEV); ++ ++ c = dev_name; ++ while(!isdigit(*c)) c++; ++ dev_number = (int)strtol(c, NULL, 10); ++ *c = '\0'; ++ len = WI_MAXSTRLEN; ++ } ++ + snprintf(mib, sizeof(mib), "dev.%s.%d.%%desc", dev_name, dev_number); + if(sysctlbyname(mib, buffer, &len, NULL, 0) == -1) + return (WI_NOSUCHDEV); +-#else +-#define WI_RID_STA_IDENTITY_LUCENT 0x1 +-#define WI_RID_STA_IDENTITY_PRISMII 0x2 +-#define WI_RID_STA_IDENTITY_SAMSUNG 0x3 +-#define WI_RID_STA_IDENTITY_DLINK 0x6 +- const char* vendor = "Unknown"; +- struct wi_req wr; +- int result; + +- bzero((void*)&wr, sizeof(wr)); +- wr.wi_len = WI_MAX_DATALEN; +- wr.wi_type = WI_RID_STA_IDENTITY; +- +- if ((result = _wi_getval(device, &wr)) != WI_OK){ +- /* For the Atheros, IDENTITY does not work. */ +- if (strcmp(device->interface, "ath") != 0) +- return(result); +- } +- else if (wr.wi_len < 4) +- return(WI_NOSUCHDEV); +- +- switch (wr.wi_val[1]) { +- case WI_RID_STA_IDENTITY_LUCENT: +- vendor = "Lucent"; +- break; +- +- case WI_RID_STA_IDENTITY_PRISMII: +- vendor = "generic PRISM II"; +- break; +- +- case WI_RID_STA_IDENTITY_SAMSUNG: +- vendor = "Samsung"; +- break; +- case WI_RID_STA_IDENTITY_DLINK: +- vendor = "D-Link"; +- break; +- } +- +- snprintf(buffer, len, "%s (ID %d, version %d.%d)", vendor, +- wr.wi_val[0], wr.wi_val[2], wr.wi_val[3]); +-#endif +- + return(WI_OK); + } +-#endif /* wi_vendor */ + +-/* NetBSD and FreeBSD 6.x uses old wi_* API */ +-#if defined(__NetBSD__) || defined(__FreeBSD_kernel__) +-/* FreeBSD 7.x use its own new iee80211 API */ +-#if defined(__FreeBSD_kernel__) && __FreeBSD_kernel_version >= 700000 + static int + _wi_getval(const struct wi_device *device, struct ieee80211req_scan_result *scan) + { +@@ -404,7 +360,9 @@ _wi_getval(const struct wi_device *device, struct ieee + + return(WI_OK); + } +-#else ++#endif ++ ++#if defined(__NetBSD__) + static int + _wi_getval(const struct wi_device *device, struct wi_req *wr) + { +@@ -420,10 +378,11 @@ _wi_getval(const struct wi_device *device, struct wi_r + return(WI_OK); + } + #endif ++ + static int + _wi_netname(const struct wi_device *device, char *buffer, size_t len) + { +-#if defined(__FreeBSD_kernel__) && __FreeBSD_kernel_version >= 700000 ++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) + struct ieee80211req ireq; + + memset(&ireq, 0, sizeof(ireq)); +@@ -434,7 +393,7 @@ _wi_netname(const struct wi_device *device, char *buff + ireq.i_len = len; + if (ioctl(device->socket, SIOCG80211, &ireq) < 0) + return WI_NOSUCHDEV; +-#else ++#elif defined(__NetBSD__) + struct wi_req wr; + int result; + +@@ -454,7 +413,7 @@ _wi_netname(const struct wi_device *device, char *buff + static int + _wi_quality(const struct wi_device *device, int *quality) + { +-#if defined(__FreeBSD_kernel__) && __FreeBSD_kernel_version >= 700000 ++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) + struct ieee80211req_scan_result req; + int result; + bzero(&req, sizeof(req)); +@@ -462,8 +421,16 @@ _wi_quality(const struct wi_device *device, int *quali + if((result = _wi_getval(device, &req)) != WI_OK) + return (result); + +- *quality = req.isr_rssi; +-#else ++ /* ++ * FreeBSD's wlan stats: ++ * signal (in dBm) = rssi * 2 + noise; ++ * quality_bars = 4 * (signal - noise); ++ * or ++ * quality_bars = rssi * 8; ++ * but, per wi_query(), above, we need to return strength in dBm, so... ++ */ ++ *quality = req.isr_rssi * 2 + req.isr_noise; ++#elif defined(__NetBSD__) + struct wi_req wr; + int result; + +@@ -486,7 +453,7 @@ _wi_quality(const struct wi_device *device, int *quali + static int + _wi_rate(const struct wi_device *device, int *rate) + { +-#if defined(__FreeBSD_kernel__) && __FreeBSD_kernel_version >= 700000 ++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) + struct ieee80211req_scan_result req; + int result, i, high; + bzero(&req, sizeof(req)); +@@ -499,7 +466,7 @@ _wi_rate(const struct wi_device *device, int *rate) + high = req.isr_rates[i] & IEEE80211_RATE_VAL; + + *rate = high / 2; +-#else ++#elif defined(__NetBSD__) + struct wi_req wr; + int result; + +@@ -516,5 +483,4 @@ _wi_rate(const struct wi_device *device, int *rate) + return(WI_OK); + } + +-#endif /* defined(__NetBSD__) || defined(__FreeBSD_kernel__) */ + #endif From owner-svn-ports-branches@freebsd.org Thu Dec 14 16:44:45 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 E5B35E86E37; Thu, 14 Dec 2017 16:44:45 +0000 (UTC) (envelope-from swills@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 AFEDC6C4D9; Thu, 14 Dec 2017 16:44:45 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBEGiimE067982; Thu, 14 Dec 2017 16:44:44 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBEGiiNF067980; Thu, 14 Dec 2017 16:44:44 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201712141644.vBEGiiNF067980@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 14 Dec 2017 16:44:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456309 - in branches/2017Q4/lang/oo2c: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in branches/2017Q4/lang/oo2c: . files X-SVN-Commit-Revision: 456309 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: Thu, 14 Dec 2017 16:44:46 -0000 Author: swills Date: Thu Dec 14 16:44:44 2017 New Revision: 456309 URL: https://svnweb.freebsd.org/changeset/ports/456309 Log: MFH: r456308 lang/oo2c: fix build with new libxml2 Submitted by: Walter Schwarzenfeld (via email) Approved by: ports-secteam (implicit) Added: branches/2017Q4/lang/oo2c/files/patch-rsrc_OOC_xml_oberon-doc.dtd - copied unchanged from r456308, head/lang/oo2c/files/patch-rsrc_OOC_xml_oberon-doc.dtd Modified: branches/2017Q4/lang/oo2c/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/lang/oo2c/Makefile ============================================================================== --- branches/2017Q4/lang/oo2c/Makefile Thu Dec 14 16:43:54 2017 (r456308) +++ branches/2017Q4/lang/oo2c/Makefile Thu Dec 14 16:44:44 2017 (r456309) @@ -13,8 +13,6 @@ COMMENT= Optimizing Oberon-2 compiler of University of LICENSE= GPLv2 -BROKEN= Fails to build with new libxml2 - BUILD_DEPENDS= xsltproc:textproc/libxslt RUN_DEPENDS= libtool:devel/libtool LIB_DEPENDS= libgc.so:devel/boehm-gc Copied: branches/2017Q4/lang/oo2c/files/patch-rsrc_OOC_xml_oberon-doc.dtd (from r456308, head/lang/oo2c/files/patch-rsrc_OOC_xml_oberon-doc.dtd) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q4/lang/oo2c/files/patch-rsrc_OOC_xml_oberon-doc.dtd Thu Dec 14 16:44:44 2017 (r456309, copy of r456308, head/lang/oo2c/files/patch-rsrc_OOC_xml_oberon-doc.dtd) @@ -0,0 +1,8 @@ +--- rsrc/OOC/xml/oberon-doc.dtd.orig 2017-12-14 16:40:51 UTC ++++ rsrc/OOC/xml/oberon-doc.dtd +@@ -1,5 +1,4 @@ + +- + + + From owner-svn-ports-branches@freebsd.org Thu Dec 14 17:17:13 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 1E992E880C9; Thu, 14 Dec 2017 17:17:13 +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 DC1EB6E4BC; Thu, 14 Dec 2017 17:17:12 +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 vBEHHBUA081306; Thu, 14 Dec 2017 17:17:11 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBEHHBB7081305; Thu, 14 Dec 2017 17:17:11 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712141717.vBEHHBB7081305@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 14 Dec 2017 17:17:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456314 - branches/2017Q4/security/nss X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/security/nss X-SVN-Commit-Revision: 456314 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: Thu, 14 Dec 2017 17:17:13 -0000 Author: jbeich Date: Thu Dec 14 17:17:11 2017 New Revision: 456314 URL: https://svnweb.freebsd.org/changeset/ports/456314 Log: MFH: r456313 security/nss: don't pull llvm40 on 10.* i386 if CPUTYPE is set PR: 221466 Submitted by: mi Approved by: ports-secteam blanket Modified: branches/2017Q4/security/nss/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/security/nss/Makefile ============================================================================== --- branches/2017Q4/security/nss/Makefile Thu Dec 14 17:13:22 2017 (r456313) +++ branches/2017Q4/security/nss/Makefile Thu Dec 14 17:17:11 2017 (r456314) @@ -57,7 +57,7 @@ BINS= ${DIST}/${OPSYS}${OSREL}_OPT.OBJ BINS= ${DIST}/${OPSYS}${OSREL}_DBG.OBJ .endif -.if ${OPSYS} == FreeBSD && ${ARCH} == i386 +.if ${OPSYS} == FreeBSD && ${ARCH} == i386 && ! ${MACHINE_CPU:Msse2} USES+= compiler:c++14-lang # gcm.h .endif From owner-svn-ports-branches@freebsd.org Sat Dec 16 02:21:37 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 E602FE961FE; Sat, 16 Dec 2017 02:21:37 +0000 (UTC) (envelope-from swills@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 9F5927170A; Sat, 16 Dec 2017 02:21:37 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBG2Lacl023603; Sat, 16 Dec 2017 02:21:36 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBG2LacE023601; Sat, 16 Dec 2017 02:21:36 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201712160221.vBG2LacE023601@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 16 Dec 2017 02:21:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456455 - branches/2017Q4/devel/jenkins-lts X-SVN-Group: ports-branches X-SVN-Commit-Author: swills X-SVN-Commit-Paths: branches/2017Q4/devel/jenkins-lts X-SVN-Commit-Revision: 456455 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: Sat, 16 Dec 2017 02:21:38 -0000 Author: swills Date: Sat Dec 16 02:21:36 2017 New Revision: 456455 URL: https://svnweb.freebsd.org/changeset/ports/456455 Log: MFH: r455735 r456454 devel/jenkins-lts: Update to 2.89.1 devel/jenkins-lts: update to 2.89.2 Security: 7136e6b7-e1b3-11e7-a4d3-000c292ee6b8 Approved by: ports-secteam (implicit) Modified: branches/2017Q4/devel/jenkins-lts/Makefile branches/2017Q4/devel/jenkins-lts/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/devel/jenkins-lts/Makefile ============================================================================== --- branches/2017Q4/devel/jenkins-lts/Makefile Sat Dec 16 02:12:27 2017 (r456454) +++ branches/2017Q4/devel/jenkins-lts/Makefile Sat Dec 16 02:21:36 2017 (r456455) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 2.73.3 +PORTVERSION= 2.89.2 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war-stable/${PORTVERSION}/ PKGNAMESUFFIX= -lts Modified: branches/2017Q4/devel/jenkins-lts/distinfo ============================================================================== --- branches/2017Q4/devel/jenkins-lts/distinfo Sat Dec 16 02:12:27 2017 (r456454) +++ branches/2017Q4/devel/jenkins-lts/distinfo Sat Dec 16 02:21:36 2017 (r456455) @@ -1,3 +1,3 @@ -TIMESTAMP = 1510149505 -SHA256 (jenkins/2.73.3/jenkins.war) = fcfb932a84ce03795abbf51ae7799439278155b0d42242d1d79a187034649fc8 -SIZE (jenkins/2.73.3/jenkins.war) = 73286753 +TIMESTAMP = 1513363803 +SHA256 (jenkins/2.89.2/jenkins.war) = 014f669f32bc6e925e926e260503670b32662f006799b133a031a70a794c8a14 +SIZE (jenkins/2.89.2/jenkins.war) = 74294776 From owner-svn-ports-branches@freebsd.org Sat Dec 16 08:37:18 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 91707EA137A; Sat, 16 Dec 2017 08:37:18 +0000 (UTC) (envelope-from sunpoet@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 5D0757C9DA; Sat, 16 Dec 2017 08:37:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBG8bHqV078196; Sat, 16 Dec 2017 08:37:17 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBG8bHDI078194; Sat, 16 Dec 2017 08:37:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201712160837.vBG8bHDI078194@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 16 Dec 2017 08:37:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456459 - branches/2017Q4/math/pecl-bitset2 X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2017Q4/math/pecl-bitset2 X-SVN-Commit-Revision: 456459 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: Sat, 16 Dec 2017 08:37:18 -0000 Author: sunpoet Date: Sat Dec 16 08:37:17 2017 New Revision: 456459 URL: https://svnweb.freebsd.org/changeset/ports/456459 Log: MFH: r451437 Update to 2.0.4 Changes: https://pecl.php.net/package-changelog.php?package=Bitset Approved by: ports-secteam (delphij) Modified: branches/2017Q4/math/pecl-bitset2/Makefile branches/2017Q4/math/pecl-bitset2/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/math/pecl-bitset2/Makefile ============================================================================== --- branches/2017Q4/math/pecl-bitset2/Makefile Sat Dec 16 06:14:14 2017 (r456458) +++ branches/2017Q4/math/pecl-bitset2/Makefile Sat Dec 16 08:37:17 2017 (r456459) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= bitset -PORTVERSION= 2.0.3 -PORTREVISION= 1 +PORTVERSION= 2.0.4 CATEGORIES= math PKGNAMESUFFIX= 2 Modified: branches/2017Q4/math/pecl-bitset2/distinfo ============================================================================== --- branches/2017Q4/math/pecl-bitset2/distinfo Sat Dec 16 06:14:14 2017 (r456458) +++ branches/2017Q4/math/pecl-bitset2/distinfo Sat Dec 16 08:37:17 2017 (r456459) @@ -1,2 +1,3 @@ -SHA256 (PECL/bitset-2.0.3.tgz) = 6fbfe633482e281e08291e56edd1270057ff4e883aca13822273e3729f491ebe -SIZE (PECL/bitset-2.0.3.tgz) = 19682 +TIMESTAMP = 1507363042 +SHA256 (PECL/bitset-2.0.4.tgz) = 73ea3f265d2c2f2da2f871ca043d3d8541e2ccc80a7f0e8f0f41ca48a839622b +SIZE (PECL/bitset-2.0.4.tgz) = 19973