svn commit: r437441 - head/databases/mongodb32

Baptiste Daroussin bapt at FreeBSD.org
Sat Apr 1 15:28:35 UTC 2017


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 at 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:


More information about the svn-ports-head mailing list