svn commit: r423294 - head/lang/pypy

John Marino marino at FreeBSD.org
Tue Oct 4 19:45:52 UTC 2016


Author: marino
Date: Tue Oct  4 19:45:51 2016
New Revision: 423294
URL: https://svnweb.freebsd.org/changeset/ports/423294

Log:
  lang/pypy: IGNORE when building with libressl
  
  Fails to configure with libressl:
  [translation:ERROR] Exception: OpenSSL version >= 1.1 not supported yet.
  
      This program requires OpenSSL version 1.0.x, and may also
      work with LibreSSL or OpenSSL 0.9.x.  OpenSSL 1.1 is quite
      some work to update to; contributions are welcome.  Sorry,
      you need to install an older version of OpenSSL for now.
      Make sure this older version is the one picked up by this
      program when it runs the compiler.
  
  Approved by:	SSL blanket

Modified:
  head/lang/pypy/Makefile

Modified: head/lang/pypy/Makefile
==============================================================================
--- head/lang/pypy/Makefile	Tue Oct  4 19:41:37 2016	(r423293)
+++ head/lang/pypy/Makefile	Tue Oct  4 19:45:51 2016	(r423294)
@@ -58,7 +58,11 @@ PATCHDIR=	${.CURDIR}/files
 PLIST=		${.CURDIR}/pkg-plist
 
 .include "${MASTERDIR}/bsd.pypy.mk"
-.include <bsd.port.options.mk>
+.include <bsd.port.pre.mk>
+
+.if ${SSL_DEFAULT:Mlibressl*}
+IGNORE=	Detected LibreSSL which is interpreted as unsupported OpenSSL > v1.1
+.endif
 
 .if ${ARCH} == "i386" || ${ARCH} == "armv6"
 PYPY_BITS=	32
@@ -116,4 +120,4 @@ pkg-plist: build
 	${SORT} ${WRKDIR}/.plist-files-gen >> ${WRKDIR}/pkg-plist
 	${CP} ${WRKDIR}/pkg-plist ${.CURDIR}/pkg-plist
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>


More information about the svn-ports-all mailing list