svn commit: r495789 - in head/sysutils: zol zol-kmod

Kris Moore kmoore at FreeBSD.org
Fri Mar 15 13:41:31 UTC 2019


Author: kmoore
Date: Fri Mar 15 13:41:29 2019
New Revision: 495789
URL: https://svnweb.freebsd.org/changeset/ports/495789

Log:
  - Allow building ZoL on 12-STABLE after 1200504

Modified:
  head/sysutils/zol-kmod/Makefile
  head/sysutils/zol/Makefile

Modified: head/sysutils/zol-kmod/Makefile
==============================================================================
--- head/sysutils/zol-kmod/Makefile	Fri Mar 15 13:31:46 2019	(r495788)
+++ head/sysutils/zol-kmod/Makefile	Fri Mar 15 13:41:29 2019	(r495789)
@@ -25,8 +25,8 @@ GCOV_DESC=	Build kernel module with GCOV support (Requ
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} < 1300013
-IGNORE=      needs FreeBSD 13 with AES-CCM support
+.if (${OSVERSION} < 1200504) || (${OSVERSION} >= 1300000 && ${OSVERSION} < 1300013)
+IGNORE=      needs FreeBSD 12/13 with AES-CCM support
 .endif
 
 .if ${PORT_OPTIONS:MDEBUG}

Modified: head/sysutils/zol/Makefile
==============================================================================
--- head/sysutils/zol/Makefile	Fri Mar 15 13:31:46 2019	(r495788)
+++ head/sysutils/zol/Makefile	Fri Mar 15 13:41:29 2019	(r495789)
@@ -27,8 +27,8 @@ GH_TAGNAME=	804ee5
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} < 1300013
-IGNORE=      needs FreeBSD 13 with AES-CCM support
+.if (${OSVERSION} < 1200504) || (${OSVERSION} >= 1300000 && ${OSVERSION} < 1300013)
+IGNORE=      needs FreeBSD 12/13 with AES-CCM support
 .endif
 
 .if ${PORT_OPTIONS:MDEBUG}


More information about the svn-ports-all mailing list