Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Oct 2018 13:15:53 +0000 (UTC)
From:      Luca Pizzamiglio <pizzamig@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r482294 - head/devel/sccache
Message-ID:  <201810171315.w9HDFrgI039873@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810171315.w9HDFrgI039873>