From owner-svn-ports-all@freebsd.org Mon Jul 9 15:11:42 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A590102F3D2; Mon, 9 Jul 2018 15:11:42 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 204D87453E; Mon, 9 Jul 2018 15:11:42 +0000 (UTC) (envelope-from miwi@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 020D916A23; Mon, 9 Jul 2018 15:11:42 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w69FBfTB077060; Mon, 9 Jul 2018 15:11:41 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w69FBfXR077059; Mon, 9 Jul 2018 15:11:41 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201807091511.w69FBfXR077059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Mon, 9 Jul 2018 15:11:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474267 - head/lang/python37 X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: head/lang/python37 X-SVN-Commit-Revision: 474267 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jul 2018 15:11:42 -0000 Author: miwi Date: Mon Jul 9 15:11:41 2018 New Revision: 474267 URL: https://svnweb.freebsd.org/changeset/ports/474267 Log: - Added a warning for FBSD10 PR: 229640 Sponsored by: iXsystems Inc. Modified: head/lang/python37/Makefile Modified: head/lang/python37/Makefile ============================================================================== --- head/lang/python37/Makefile Mon Jul 9 15:09:37 2018 (r474266) +++ head/lang/python37/Makefile Mon Jul 9 15:11:41 2018 (r474267) @@ -118,9 +118,10 @@ DISABLED_EXTENSIONS+= nis PLIST_SUB+= NO_NIS="" .endif -# python37 fail build ssl module on FreeBSD10, because X509_VERIFY_PARAM_set1_host check fails. -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 +# python37 fails to build ssl module on FreeBSD10 with base SSL because X509_VERIFY_PARAM_set1_host check fails. +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 && ${SSL_DEFAULT} == base PLIST_SUB+= NO_SSL="@comment " +WARNING+= "No SSL support for FreeBSD ${OSREL} with base SSL! OpenSSL must be greater than/equal to 1.0.2" .else PLIST_SUB+= NO_SSL="" .endif