message
stringlengths
6
474
diff
stringlengths
8
5.22k
tools/docker: clean up sgx packages for alinux2 Fixes:
@@ -50,12 +50,8 @@ RUN yum-config-manager --add-repo \ # install Intel SGX SDK and DCAP RUN yum install --nogpgcheck -y \ - libsgx-ae-le libsgx-ae-pce libsgx-ae-qe3 libsgx-ae-qve \ - libsgx-aesm-ecdsa-plugin libsgx-aesm-launch-plugin libsgx-aesm-pce-plugin libsgx-aesm-quote-ex-plugin \ - libsgx-dcap-default-qpl libsgx-dcap-ql libsgx-dcap-quote-verify \ - libsgx-enclave-common libsgx-launch libsgx-pce-logic libsgx-qe3-logic libsgx-quote-ex \ - libsgx-ra-network libsgx-ra-uefi libsgx-uae-service libsgx-urts sgx-ra-service \ - sgx-aesm-service + libsgx-uae-service libsgx-dcap-default-qpl \ + libsgx-dcap-quote-verify libsgx-dcap-ql # install Alibaba Cloud TEE SDK RUN yum install --nogpgcheck -y teesdk
Explicitly test for the mako python module Some distros (Gentoo) support multiple versions of python3 and mako may not be built for all of the implementations. Testing for the module early will make sure meson bails out if the module cannot be found.
@@ -7,7 +7,7 @@ project('MangoHud', cc = meson.get_compiler('c') cpp = meson.get_compiler('cpp') -prog_python = import('python').find_installation('python3') +prog_python = import('python').find_installation('python3', modules: ['mako']) null_dep = dependency('', required : false) mangohud_version = vcs_tag(
Fix typo in lib.rs
@@ -104,7 +104,7 @@ impl Addr { pub struct Status {} impl Status { - /// Determines if a MsQuic status is considered a succes, which includes + /// Determines if a MsQuic status is considered a success, which includes /// both "no error" and "pending" status codes. #[cfg(target_os = "windows")] pub fn succeeded(status: u32) -> bool {