mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
meson: Improve certifi documentation on macOS
First, just installing certifi doesn't install the ca-cert in the right location. The `Install Certificates.command` script also symlinks the openssl cert.pem to the certifi ca cert file Second, we can make it more likely that users will notice this if we make it a warning. If we ever get a bug report about this despite these measures, we can try to make this an error. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2768>
This commit is contained in:
parent
095da4c521
commit
40e84b0b6c
2 changed files with 28 additions and 0 deletions
14
README.md
14
README.md
|
@ -53,6 +53,20 @@ binary in your PATH.
|
|||
|
||||
You can find [instructions for Windows below](#windows-prerequisites-setup).
|
||||
|
||||
|
||||
On macOS, you might need to execute "Install Certificates.command" from the
|
||||
Python folder in the user Applications folder:
|
||||
|
||||
```
|
||||
$ /Applications/Python\ 3.*/Install\ Certificates.command
|
||||
```
|
||||
|
||||
Otherwise you will get this error when downloading meson wraps:
|
||||
|
||||
```
|
||||
urllib.error.URLError: urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed
|
||||
```
|
||||
|
||||
### Build GStreamer and its modules
|
||||
|
||||
You can get all GStreamer built running:
|
||||
|
|
14
meson.build
14
meson.build
|
@ -47,6 +47,20 @@ if build_system == 'windows' and meson.version().version_compare('<0.60.0')
|
|||
endif
|
||||
endif
|
||||
|
||||
# On macOS, you have to run "Install Certificates.command" otherwise Python
|
||||
# doesn't have access to the latest SSL CA Certificates, and Meson will fail to
|
||||
# download wrap files from websites that use, for example, Let's Encrypt.
|
||||
# We already recommend this in the README, but add a warning here as well.
|
||||
# Can't make this an error because the user might be using XCode's Python
|
||||
# 3 which doesn't have this script.
|
||||
if build_system == 'darwin'
|
||||
python3_cacert_file = python3.get_path('data') / 'etc/openssl/cert.pem'
|
||||
install_cert_cmd = '/Applications/Python @0@/Install Certificates.command'.format(python3.language_version())
|
||||
if not fs.is_symlink(python3_cacert_file) and fs.is_file(install_cert_cmd)
|
||||
warning('Please run "@0@" so that Python has access to the latest SSL certificates. Meson might fail to download some wraps without it.'.format(install_cert_cmd))
|
||||
endif
|
||||
endif
|
||||
|
||||
documented_projects = ''
|
||||
# Make it possible to use msys2 built zlib which fails
|
||||
# when not using the mingw toolchain as it uses unistd.h
|
||||
|
|
Loading…
Reference in a new issue