Add a note about make makesum verifying HTTPS certificates.

Requested by:	adamw
This commit is contained in:
Tijl Coosemans 2017-03-13 16:10:59 +00:00
parent 515e3a0588
commit 81a787c97d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=436086

12
CHANGES
View File

@ -10,6 +10,18 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
20170313:
AUTHOR: tijl@FreeBSD.org
HTTPS certificates are now verified when "make makesum" fetches distfiles.
If this fails make sure you have a CA certificate bundle installed such as
security/ca_root_nss. If it still fails and there are other HTTPS sites
with a valid certificate consider removing the site from MASTER_SITES.
If the site cannot be removed you can disable certificate verification by
adding the following line to the port Makefile:
FETCH_ENV= SSL_NO_VERIFY_PEER=1 SSL_NO_VERIFY_HOSTNAME=1
20170218:
AUTHOR: kde@FreeBSD.org