Date: Mon, 9 Jul 2018 15:11:41 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474267 - head/lang/python37 Message-ID: <201807091511.w69FBfXR077059@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807091511.w69FBfXR077059>