From owner-svn-ports-head@freebsd.org Tue Oct 4 19:45:52 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8206AF508A; Tue, 4 Oct 2016 19:45:52 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9AD0AFFC; Tue, 4 Oct 2016 19:45:52 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u94JjpaV024851; Tue, 4 Oct 2016 19:45:51 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u94Jjpt5024850; Tue, 4 Oct 2016 19:45:51 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201610041945.u94Jjpt5024850@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 4 Oct 2016 19:45:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423294 - head/lang/pypy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Oct 2016 19:45:52 -0000 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 +.include + +.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 +.include