svn commit: r477063 - head/databases/mysql80-server

Mahdi Mokhtari mmokhi at FreeBSD.org
Mon Aug 13 12:45:23 UTC 2018


Author: mmokhi
Date: Mon Aug 13 12:45:21 2018
New Revision: 477063
URL: https://svnweb.freebsd.org/changeset/ports/477063

Log:
  databases/mysql80-server: Use c++14-lang instead of `msse-4.2 in CXXFLAG`
  As suggested via replies to r477036 using `-msse-4.2` may break build on other
  platforms.
  
  Reported by:	linimon danfe jbeich
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/databases/mysql80-server/Makefile

Modified: head/databases/mysql80-server/Makefile
==============================================================================
--- head/databases/mysql80-server/Makefile	Mon Aug 13 11:10:57 2018	(r477062)
+++ head/databases/mysql80-server/Makefile	Mon Aug 13 12:45:21 2018	(r477063)
@@ -17,8 +17,8 @@ LICENSE=		GPLv2
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}${DISTVERSIONSUFFIX}
 
 SLAVEDIRS=	databases/mysql80-client
-USES=		bison:build cmake:outsource,noninja compiler:c11 compiler:c++11-lib \
-		cpe libedit localbase perl5 shebangfix ssl
+USES=		bison:build cmake:outsource,noninja compiler:c14 compiler:c++14-lang \
+		compiler:c++14-lib cpe libedit localbase perl5 shebangfix ssl
 
 USE_PERL5=	run
 
@@ -146,11 +146,6 @@ FEDERATED_SUB_LIST_OFF+=	FEDER=""
 SUB_LIST+=	LEGACY_LIMITS="@comment " MODERN_LIMITS=""
 .else
 SUB_LIST+=	LEGACY_LIMITS="" MODERN_LIMITS="@comment "
-.endif
-
-# required for SSE-4.2 support on the default Clang++ on 10.4
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000
-CXXFLAGS+=	-msse4.2
 .endif
 
 .include <bsd.port.pre.mk>


More information about the svn-ports-all mailing list