svn commit: r482294 - head/devel/sccache

Luca Pizzamiglio pizzamig at FreeBSD.org
Wed Oct 17 13:15:54 UTC 2018


Author: pizzamig
Date: Wed Oct 17 13:15:53 2018
New Revision: 482294
URL: https://svnweb.freebsd.org/changeset/ports/482294

Log:
  devel/sccache: ignore on CURRENT if openssl 1.1.1 based
  
  The current chain of dependencies doens't support openssl 1.1.1

Modified:
  head/devel/sccache/Makefile

Modified: head/devel/sccache/Makefile
==============================================================================
--- head/devel/sccache/Makefile	Wed Oct 17 13:14:17 2018	(r482293)
+++ head/devel/sccache/Makefile	Wed Oct 17 13:15:53 2018	(r482294)
@@ -282,10 +282,16 @@ CARGO_CRATES=	adler32-1.0.3 \
 		xattr-0.2.2 \
 		zip-0.4.2
 
+.include <bsd.port.pre.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} > 1200084
+IGNORE=	openssl 1.1.1 is incompatible with the reqwest 0.8.8 dependencies
+.endif
+
 do-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
 
 post-install:
 	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sccache
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>


More information about the svn-ports-head mailing list