svn commit: r547474 - branches/2020Q3/databases/mysql80-server

Jochen Neumeister joneum at FreeBSD.org
Thu Sep 3 18:54:05 UTC 2020


Author: joneum
Date: Thu Sep  3 18:54:05 2020
New Revision: 547474
URL: https://svnweb.freebsd.org/changeset/ports/547474

Log:
  MFH: r547473
  
  fix build on current
  - add temporary work around to use llvm from ports on recent currents
  
  Sponsored by:	Netzkommune GmbH
  
  Approved by:	ports-secteam (with hat)

Modified:
  branches/2020Q3/databases/mysql80-server/Makefile
Directory Properties:
  branches/2020Q3/   (props changed)

Modified: branches/2020Q3/databases/mysql80-server/Makefile
==============================================================================
--- branches/2020Q3/databases/mysql80-server/Makefile	Thu Sep  3 18:50:52 2020	(r547473)
+++ branches/2020Q3/databases/mysql80-server/Makefile	Thu Sep  3 18:54:05 2020	(r547474)
@@ -181,6 +181,12 @@ SUB_LIST+=	LEGACY_LIMITS="" MODERN_LIMITS="@comment "
 
 .include <bsd.port.pre.mk>
 
+.if ${CHOSEN_COMPILER_TYPE} == clang && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1300109
+BUILD_DEPENDS+=		clang${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT}
+CC=			${LOCALBASE}/bin/clang${LLVM_DEFAULT}
+CXX=		${LOCALBASE}/bin/clang++${LLVM_DEFAULT}
+.endif
+
 post-extract:
 	@${RM} -rv ${WRKSRC}/sql/sql_hints.yy.cc ${WRKSRC}/sql/sql_hints.yy.h
 


More information about the svn-ports-all mailing list