Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Oct 2016 19:45:51 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r423294 - head/lang/pypy
Message-ID:  <201610041945.u94Jjpt5024850@repo.freebsd.org>

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



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