From owner-svn-ports-head@freebsd.org Sat Apr 1 15:28:35 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 94589D29782; Sat, 1 Apr 2017 15:28:35 +0000 (UTC) (envelope-from bapt@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 6473430F; Sat, 1 Apr 2017 15:28:35 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v31FSYol033194; Sat, 1 Apr 2017 15:28:34 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v31FSYYs033193; Sat, 1 Apr 2017 15:28:34 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201704011528.v31FSYYs033193@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 1 Apr 2017 15:28:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437441 - 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-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Apr 2017 15:28:35 -0000 Author: bapt Date: Sat Apr 1 15:28:34 2017 New Revision: 437441 URL: https://svnweb.freebsd.org/changeset/ports/437441 Log: Now that llvm 3.7 is gone, use llvm40 if the clang compiler is lower than 3.7 mongodb requires clang >= 3.7 to build if the compiler is clang Reported by: Walter Schwarzenfeld Modified: head/databases/mongodb32/Makefile Modified: head/databases/mongodb32/Makefile ============================================================================== --- head/databases/mongodb32/Makefile Sat Apr 1 15:24:16 2017 (r437440) +++ head/databases/mongodb32/Makefile Sat Apr 1 15:28:34 2017 (r437441) @@ -57,10 +57,10 @@ TEST_TARGET= unittests # - https://jira.mongodb.org/browse/SERVER-21217 # - https://jira.mongodb.org/browse/SERVER-22740 .if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} < 37 -BUILD_DEPENDS+= ${LOCALBASE}/bin/clang37:lang/clang37 -CPP= ${LOCALBASE}/bin/clang-cpp37 -CC= ${LOCALBASE}/bin/clang37 -CXX= ${LOCALBASE}/bin/clang++37 +BUILD_DEPENDS+= ${LOCALBASE}/bin/clang40:devel/llvm40 +CPP= ${LOCALBASE}/bin/clang-cpp40 +CC= ${LOCALBASE}/bin/clang40 +CXX= ${LOCALBASE}/bin/clang++40 .endif post-install: