svn commit: r467049 - head/databases/mysql56-server
Mahdi Mokhtari
mmokhi at FreeBSD.org
Wed Apr 11 14:37:41 UTC 2018
Author: mmokhi
Date: Wed Apr 11 14:37:40 2018
New Revision: 467049
URL: https://svnweb.freebsd.org/changeset/ports/467049
Log:
databases/mysql56-server: Fix ${name}_limits regression on 11-STABLE
The commit adding the ${name}_limits to 11 is reverted in r332363
Change the Makefile conditions/vars so that
new ${name}_limits mechanism is only present on 12-CURRENT (>=1200057)
PR: 227435
Reported by: 0mp
Modified:
head/databases/mysql56-server/Makefile
Modified: head/databases/mysql56-server/Makefile
==============================================================================
--- head/databases/mysql56-server/Makefile Wed Apr 11 14:26:15 2018 (r467048)
+++ head/databases/mysql56-server/Makefile Wed Apr 11 14:37:40 2018 (r467049)
@@ -3,7 +3,7 @@
PORTNAME?= mysql
PORTVERSION= 5.6.39
-PORTREVISION?= 2
+PORTREVISION?= 3
CATEGORIES= databases ipv6
MASTER_SITES= MYSQL/MySQL-5.6
PKGNAMESUFFIX?= 56-server
@@ -135,11 +135,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-all
mailing list