svn commit: r474267 - head/lang/python37

Martin Wilke miwi at FreeBSD.org
Mon Jul 9 15:11:42 UTC 2018


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


More information about the svn-ports-all mailing list