svn commit: r324051 - head/Mk

Baptiste Daroussin bapt at FreeBSD.org
Wed Jul 31 13:30:19 UTC 2013


Author: bapt
Date: Wed Jul 31 13:30:18 2013
New Revision: 324051
URL: http://svnweb.freebsd.org/changeset/ports/324051

Log:
  On HEAD fetch is now checking for https, which lead to lots of fetch failures
  on invalid websites, given the ports tree already checks the distfiles against
  a hash, it is safe to skip the certificate validation.
  
  Submitted by:	Michael Gmelin <freebsd at grem.de>

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Wed Jul 31 13:21:36 2013	(r324050)
+++ head/Mk/bsd.port.mk	Wed Jul 31 13:30:18 2013	(r324051)
@@ -2171,6 +2171,7 @@ CONFIGURE_ENV+=	CCACHE_DIR="${CCACHE_DIR
 PTHREAD_CFLAGS?=
 PTHREAD_LIBS?=		-pthread
 
+FETCH_ENV?=		SSL_NO_VERIFY_PEER=1 SSL_NO_VERIFY_HOSTNAME=1
 FETCH_BINARY?=	/usr/bin/fetch
 FETCH_ARGS?=	-AFpr
 FETCH_REGET?=	1


More information about the svn-ports-all mailing list