Date: Fri, 15 Mar 2019 13:41:30 +0000 (UTC) From: Kris Moore <kmoore@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r495789 - in head/sysutils: zol zol-kmod Message-ID: <201903151341.x2FDfU60042206@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903151341.x2FDfU60042206>