Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Apr 2017 15:28:34 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r437441 - head/databases/mongodb32
Message-ID:  <201704011528.v31FSYYs033193@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <w.schwarzenfeld@utanet.at>

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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704011528.v31FSYYs033193>