mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 15:50:07 +02:00
23 lines
870 B
Plaintext
23 lines
870 B
Plaintext
From ccdc434983f7df27fa679b8bc05fe3c2c5b89c7e Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Joachim=20Mairb=C3=B6ck?= <j.mairboeck@gmail.com>
|
|
Date: Sun, 26 Jan 2025 21:16:59 +0100
|
|
Subject: use system CA certificates instead of requiring the Mozilla::CA perl
|
|
module
|
|
|
|
|
|
diff --git a/lib/Biber/Utils.pm b/lib/Biber/Utils.pm
|
|
index 7b0d4f6..3c61307 100644
|
|
--- a/lib/Biber/Utils.pm
|
|
+++ b/lib/Biber/Utils.pm
|
|
@@ -193,6 +193,7 @@ sub locate_data_file {
|
|
/etc/ssl/certs/ca-certificates.crt
|
|
/etc/pki/tls/certs/ca-bundle.crt
|
|
/etc/ssl/ca-bundle.pem
|
|
+ /boot/system/data/ssl/CARootCertificates.pem
|
|
}) {
|
|
next if ! -e $ca_bundle;
|
|
$ENV{PERL_LWP_SSL_CA_FILE} = $ca_bundle;
|
|
--
|
|
2.45.2
|
|
|