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

Mahdi Mokhtari mmokhi at FreeBSD.org
Wed Apr 11 14:42:07 UTC 2018


Author: mmokhi
Date: Wed Apr 11 14:42:06 2018
New Revision: 467052
URL: https://svnweb.freebsd.org/changeset/ports/467052

Log:
  databases/mysql80-server: Fix ${name}_limits regression on 11-STABLE
  This is port of r467049 (that was done on mysql56-server)
  
  PR:		227435
  Reported by:	0mp

Modified:
  head/databases/mysql80-server/Makefile

Modified: head/databases/mysql80-server/Makefile
==============================================================================
--- head/databases/mysql80-server/Makefile	Wed Apr 11 14:40:52 2018	(r467051)
+++ head/databases/mysql80-server/Makefile	Wed Apr 11 14:42:06 2018	(r467052)
@@ -3,7 +3,7 @@
 
 PORTNAME?=		mysql
 PORTVERSION=		8.0.2
-PORTREVISION?=		2
+PORTREVISION?=		3
 DISTVERSIONSUFFIX?=	-dmr
 CATEGORIES=		databases ipv6
 MASTER_SITES=		MYSQL/MySQL-8.0
@@ -141,11 +141,10 @@ FEDERATED_SUB_LIST_OFF+=	FEDER=""
 
 .include <bsd.port.options.mk>
 
-.if ${OPSYS} != FreeBSD || ${OSVERSION} < 1101514 || \
-	${OSVERSION} >= 1200000 && ${OSVERSION} < 1200057
-SUB_LIST+=	LEGACY_LIMITS="" MODERN_LIMITS="@comment "
-.else
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200057
 SUB_LIST+=	LEGACY_LIMITS="@comment " MODERN_LIMITS=""
+.else
+SUB_LIST+=	LEGACY_LIMITS="" MODERN_LIMITS="@comment "
 .endif
 
 .include <bsd.port.pre.mk>


More information about the svn-ports-head mailing list