From owner-svn-ports-all@freebsd.org Wed Apr 13 14:06:26 2016 Return-Path: Delivered-To: svn-ports-all@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 09757B0E61F; Wed, 13 Apr 2016 14:06:26 +0000 (UTC) (envelope-from amdmi3@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 B4FD5112E; Wed, 13 Apr 2016 14:06:25 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3DE6O9w064299; Wed, 13 Apr 2016 14:06:24 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3DE6Oec064298; Wed, 13 Apr 2016 14:06:24 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201604131406.u3DE6Oec064298@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 13 Apr 2016 14:06:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413208 - head/databases/mongodb32 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Apr 2016 14:06:26 -0000 Author: amdmi3 Date: Wed Apr 13 14:06:24 2016 New Revision: 413208 URL: https://svnweb.freebsd.org/changeset/ports/413208 Log: - Extend IGNORE condition from "< 10.0" to "< 10.2": this doesn't build on 10.1 either: /usr/include/c++/v1/type_traits:433:76: error: no matching function for call to '__source' : public integral_constant(__is_function_imp::__source<_Tp>())) == 1> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ... src/mongo/db/catalog/database.cpp:618:32: note: while substituting deduced template arguments into function template 'function' [with _Fp = std::__1::__bind &, std::__1::placeholders::__ph<2> &>] stdx::bind(&StorageEngine::Factory::validateCollectionStorageOptions, ^ /usr/include/c++/v1/type_traits:424:28: note: candidate template ignored: substitution failure [with _Tp = mongo::Status (const mongo::BSONObj &) const]: reference to function type 'mongo::Status (const mongo::BSONObj &) const' cannot have 'const' qualifier template _Tp& __source(); ~~~ ^ src/mongo/db/catalog/database.cpp:617:9: error: no matching function for call to 'validateStorageOptions' validateStorageOptions(collectionOptions.storageEngine, ^~~~~~~~~~~~~~~~~~~~~~ - While here, check OPSYS along with OSVERSION Reported by: pkg-fallout Approved by: portmgr blanket Modified: head/databases/mongodb32/Makefile Modified: head/databases/mongodb32/Makefile ============================================================================== --- head/databases/mongodb32/Makefile Wed Apr 13 12:52:02 2016 (r413207) +++ head/databases/mongodb32/Makefile Wed Apr 13 14:06:24 2016 (r413208) @@ -60,9 +60,9 @@ TEST_TARGET= unittests .include -.if ${OSVERSION} < 1000000 +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1002000 # Cannot be built -IGNORE= unsupported on FreeBSD 9 or older +IGNORE= unsupported on FreeBSD 10.1 or older .endif post-install: